body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 50;
}

h2 {
    color: darkred;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 32px;
    width: 32px;
}

.logo-text {
    margin-left: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #15803d;
}

nav {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #4b5563;
    transition: all 0.3s ease;
}

#nav-toggle {
    display: none;
}

#nav-toggle:checked ~ nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

nav a {
    color: #4b5563;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 0;
}

nav a:hover {
    color: #dc2626;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    nav {
        display: flex;
        gap: 2rem;
    }

    .logo-container img {
        height: 64px;
        width: 64px;
    }

    .logo-text {
        font-size: 1.875rem;
    }
}

/* Hero Section */
#home {
    position: relative;
    background-color: #111827;
    height: 100vh;
    padding-top: 4rem;
    display: flex;
    align-items: center;
}

#home img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

#home .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.8), rgba(31, 41, 55, 0.4));
}

.hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    color: #fff;
    text-align: center;
}

@media (min-width: 640px) {
    .hero-content {
        text-align: left;
    }
}

.hero-content h1 {
    color: #dc2626;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-content .tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: #dc2626;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .tagline {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.125rem;
    }
}

/* About Section */
#about {
    padding: 2rem 1rem;
    background-color: #fff;
}

.about-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-container h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.about-content p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.vision-mission {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.vision-mission div {
    background-color: #fef2f2;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.vision-mission h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.vision-mission p {
    color: #4b5563;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .vision-mission {
        grid-template-columns: 1fr 1fr;
    }

    .about-container h2 {
        font-size: 1.875rem;
    }

    .vision-mission h3 {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}

/* Core Values Section */
#core-values {
    padding: 2rem 1rem;
    background-color: #f9fafb;
}

.core-values-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.core-values-container h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.core-values-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.core-value {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.core-value img.core-value-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
}

.core-value h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.core-value p {
    color: #4b5563;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .core-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .core-values-container h2 {
        font-size: 1.875rem;
    }

    .core-value img.core-value-icon {
        width: 3rem;
        height: 3rem;
    }
}

/* Services Section */
#services {
    padding: 2rem 1rem;
    background-color: #fff;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.services-container h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.service {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
}

.service img.service-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 1rem;
    
}

.service p {
    color: #374151;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-container h2 {
        font-size: 1.875rem;
    }

    .service img.service-icon {
        width: 1.5rem;
        height: 1.5rem;
        
    }

    .service p {
        font-size: 1rem;
    }
}

/* Team Section */
#team {
    padding: 2rem 1rem;
    background-color: #f9fafb;
}

.team-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.team-container h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.team-member {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-member img.team-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
}

.team-member h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #4b5563;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-container h2 {
        font-size: 1.875rem;
    }

    .team-member img.team-icon {
        width: 3rem;
        height: 3rem;
    }
}

/* Contact Section */
#contact {
    padding: 2rem 1rem;
    background-color: #fff;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-container h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-card {
    max-width: 32rem;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item img.contact-icon {
    width: 2rem;
    height: 2rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 1rem;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #4b5563;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .contact-container h2 {
        font-size: 1.875rem;
    }

    .contact-card {
        padding: 2.5rem;
    }

    .contact-item img.contact-icon {
        width: 2rem;
        height: 2rem;
        margin-top: 3rem;
    }
}

/* Footer */
footer {
    background-color: #14532d;
    color: #fff;
    padding: 0.5rem 1rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    margin-left: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-text {
    color: #9ca3af;
    font-size: 0.75rem;
    text-align: center;
}

.footer-text a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-text a:hover {
    color: #dc2626;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-logo img {
        width: 64px;
        height: 64px;
    }

    .footer-logo span {
        font-size: 1.875rem;
    }

    .footer-text {
        font-size: 0.875rem;
    }
}
