/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #F0FFF0;
}

/* Header Section */
.header {
    background-color: #228B22;
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 2rem;
}

.login-btn a {
    color: #fff;
    background-color: #32CD32;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.login-btn a:hover {
    background-color: #2E8B57;
}

/* Search Section */
.search-section {
    padding: 20px;
    text-align: center;
}

.search-input {
    padding: 10px;
    width: 50%;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #228B22;
}

/* Services Section */
.services {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #F8F8FF;
}

.service-item {
    text-align: center;
    padding: 15px;
    background-color: #90EE90;
    border-radius: 10px;
    width: 15%;
    font-weight: bold;
    color: #2E8B57;
}

.service-item:hover {
    background-color: #32CD32;
    color: white;
    cursor: pointer;
}

/* Banner Section */
.banner {
    background-color: #FFFAFA;
    text-align: center;
    padding: 40px 0;
    margin-top: 20px;
}

.banner-item h2 {
    font-size: 2rem;
    color: #228B22;
}

.banner-item p {
    font-size: 1rem;
    color: #696969;
}

/* Footer Section */
.footer {
    background-color: #228B22;
    color: white;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
}
