/* Reset and Base Styles */
html {
    font-size: 10px;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content p {
    margin: 0 0 1.5rem 0;
    font-size: 1.4rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #004C22;
    color: white;
}

.cookie-btn.accept:hover {
    background: #1e3a21;
}

.cookie-btn.decline {
    background: #f5f5f5;
    color: #333;
}

.cookie-btn.decline:hover {
    background: #e0e0e0;
}

/* Header */
.header {
    background: #004C22;
    color: white;
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand h1 {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #a8d5aa;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c4e 100%);
    color: white;
    text-align: center;
    padding: 10rem 2rem 5rem;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 80rem;
}

.hero-content h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #a8d5aa;
    color: #004C22;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #8cc68e;
    transform: translateY(-0.2rem);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #004C22;
    color: white;
}

.about h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 30rem;
}

.about-text p {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-image {
    flex: 1;
    min-width: 30rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #f8f9fa;
}

.services h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #004C22;
}

.services-subtitle {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 5rem;
    color: #666;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 25rem;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.5rem);
}

.service-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    background: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 3rem;
    height: 3rem;
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #004C22;
}

.service-card p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
}

/* Process Section */
.process {
    padding: 8rem 0;
    background: white;
}

.process h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    color: #004C22;
}

.process-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.process-image {
    flex: 1;
    min-width: 30rem;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.process-text {
    flex: 1;
    min-width: 30rem;
}

.process-text p {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #333;
}

.process-text ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.process-text li {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
}

/* Team Section */
.team {
    padding: 8rem 0;
    background: #f8f9fa;
}

.team h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 5rem;
    text-align: center;
    color: #004C22;
}

.team-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 30rem;
    background: #41C464;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    color: white;
}

.member-image {
    width: 10rem;
    height: 10rem;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #a8d5aa;
}

.team-member p {
    font-size: 1.4rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: url("img/bg.png");
    color: white;
}

.contact h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
}

#contact-form {
    max-width: 60rem;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
    height: 15rem;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: #a8d5aa;
    color: #004C22;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #8cc68e;
    transform: translateY(-0.2rem);
}

/* Footer */
.footer {
    background: #1a3a1d;
    color: white;
    padding: 3rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #a8d5aa;
}

/* Success Page Styles */
.success-section {
    padding: 12rem 0 8rem;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content {
    text-align: center;
    max-width: 50rem;
}

.success-icon {
    margin-bottom: 3rem;
}

.success-content h1 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #004C22;
}

.success-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #666;
}

.success-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #004C22;
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1e3a21;
    transform: translateY(-0.2rem);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #004C22;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border: 2px solid #004C22;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #004C22;
    color: white;
    transform: translateY(-0.2rem);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .nav {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem 2rem;
    }

    .nav-menu {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 12rem 2rem 5rem;
    }

    .hero-content h2 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.6rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .process-content {
        flex-direction: column;
        text-align: center;
    }

    .services-grid {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
    }

    .cookie-popup {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 10rem 1.5rem 4rem;
    }

    .hero-content h2 {
        font-size: 2.4rem;
    }

    .services,
    .about,
    .process,
    .team,
    .contact {
        padding: 6rem 0;
    }

    .service-card,
    .team-member {
        min-width: auto;
    }

    .success-section {
        padding: 10rem 0 6rem;
    }
}
.mobile-menu-btn{
    display: none!important;
}