/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f3f4f6;
    color: #333;
}

header {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 2px solid #A2C837;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    max-width: 300px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: #A2C837;
}

/* About Hero Section */
.about-hero {
    background: url('hero-background.jpg') no-repeat center center/cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    margin-bottom: 0;
}

/* About Content Section */
.about-content {
    padding: 60px 20px;
    background: #ffffff;
}

.about-content h2 {
    font-size: 32px;
    color: #A2C837;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 50px;
}

.values-list li {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.values-list li strong {
    color: #333;
}

.team-photos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-photos img {
    max-width: 200px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 20px;
    background: #f9fafb;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 32px;
    color: #A2C837;
    margin-bottom: 20px;
}

.why-choose-us p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.choose-us-list {
    list-style: none;
    padding-left: 0;
}

.choose-us-list li {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    border-top: 3px solid #A2C837;
}
