* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-container {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #27ae60;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

.hero-card {
    display: flex;
    margin: 60px auto;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.hero-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #e8f5e9;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1b5e20;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #2e7d32;
}

.cta-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #229954;
}

.hero-image {
    flex: 1;
    background-color: #c8e6c9;
}

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

.intro-cards {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.card-container {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1b5e20;
}

.intro-card p {
    color: #5a6c7d;
}

.mission-section {
    background-color: #ffffff;
    padding: 80px 20px;
    margin: 60px 0;
}

.mission-card-large {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.mission-text {
    flex: 1.5;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1b5e20;
}

.mission-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.link-arrow {
    display: inline-block;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(4px);
}

.mission-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background-color: #e8f5e9;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
}

.stat-label {
    font-size: 14px;
    color: #2e7d32;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-preview {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1b5e20;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 48px;
}

.service-card {
    flex: 1 1 calc(50% - 14px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #c8e6c9;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1b5e20;
}

.service-content p {
    color: #5a6c7d;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.service-link {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #229954;
}

.cta-center {
    text-align: center;
}

.cta-secondary {
    display: inline-block;
    border: 2px solid #27ae60;
    color: #27ae60;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: #27ae60;
    color: #ffffff;
}

.approach-section {
    background-color: #f0f7f4;
    padding: 80px 20px;
    margin: 60px 0;
}

.approach-card {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1b5e20;
}

.approach-steps {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 220px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 12px;
}

.step-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1b5e20;
}

.step-card p {
    color: #5a6c7d;
    font-size: 15px;
}

.form-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.form-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1b5e20;
}

.form-card > p {
    color: #5a6c7d;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d1d8e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #229954;
}

.footer {
    background-color: #1b5e20;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-card {
    flex: 1;
    min-width: 250px;
}

.footer-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-card p {
    color: #c8e6c9;
    line-height: 1.7;
}

.footer-card ul {
    list-style: none;
}

.footer-card ul li {
    margin-bottom: 10px;
}

.footer-card ul li a {
    color: #c8e6c9;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-card ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #2e7d32;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #c8e6c9;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 14px;
    color: #c8e6c9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 200;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #229954;
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thanks-card {
    max-width: 600px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1b5e20;
}

.thanks-card p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.about-hero {
    background-color: #e8f5e9;
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    color: #1b5e20;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 20px;
    color: #2e7d32;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-section {
    margin-bottom: 60px;
}

.about-flex {
    display: flex;
    gap: 48px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1b5e20;
}

.about-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #c8e6c9;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.values-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1b5e20;
}

.value-card p {
    color: #5a6c7d;
}

.contact-content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1b5e20;
}

.info-item {
    margin-bottom: 20px;
}

.info-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

.info-value {
    color: #5a6c7d;
}

.legal-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.legal-card h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1b5e20;
}

.legal-card h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1b5e20;
}

.legal-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-card ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-card ul li {
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-card {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 24px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .card-container {
        flex-direction: column;
    }

    .mission-card-large {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .approach-steps {
        flex-direction: column;
    }

    .about-flex {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
}