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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --light-green: #7cb342;
    --accent-earth: #8b6f47;
    --neutral-light: #f4f6f2;
    --neutral-mid: #e8ebe6;
    --text-dark: #1a2410;
    --text-mid: #4a5240;
    --white: #ffffff;
    --border-color: #d4d8cf;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-mid);
    padding: 0.3rem 0.8rem;
    background-color: var(--neutral-mid);
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 1.8rem;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-green);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--neutral-light);
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    padding-right: 3rem;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-image {
    flex: 1;
    background-color: var(--neutral-mid);
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--secondary-green);
    text-decoration: none;
    border: 2px solid var(--secondary-green);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--secondary-green);
    color: var(--white);
}

.intro-offset {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: var(--white);
}

.intro-content {
    flex: 1.2;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    background-color: var(--neutral-mid);
    border-radius: 8px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-preview {
    padding: 6rem 5%;
    background-color: var(--neutral-light);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: var(--text-mid);
}

.services-grid-alternating {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 2.5rem;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card.left-emphasis {
    flex-direction: row;
}

.service-card.right-emphasis {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: var(--neutral-mid);
    min-height: 320px;
}

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

.service-details {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-details p {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    font-size: 1.3rem;
    color: var(--secondary-green);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.select-service {
    padding: 0.9rem 2rem;
    background-color: var(--light-green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
}

.form-section {
    padding: 6rem 5%;
    background-color: var(--white);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-container > p {
    font-size: 1.05rem;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
}

.form-group input[readonly] {
    background-color: var(--neutral-light);
}

.btn-submit {
    padding: 1rem 3rem;
    background-color: var(--secondary-green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
}

.why-choose {
    padding: 6rem 5%;
    background-color: var(--neutral-light);
}

.why-choose h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.benefits-asymmetric {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-block {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-block h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-block p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.footer-main {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 4rem 5% 2rem 5%;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--light-green);
    color: var(--white);
}

.btn-accept:hover {
    background-color: var(--secondary-green);
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 5rem 5%;
    background-color: var(--neutral-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-mid);
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    padding: 6rem 5%;
    background-color: var(--white);
}

.story-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-text p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.story-image {
    flex: 1;
    background-color: var(--neutral-mid);
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.values-offset {
    padding: 6rem 5%;
    background-color: var(--neutral-light);
}

.values-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.value-item p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.expertise-section {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    background-color: var(--white);
    align-items: center;
}

.expertise-visual {
    flex: 1;
    background-color: var(--neutral-mid);
    border-radius: 8px;
    overflow: hidden;
    min-height: 450px;
}

.expertise-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-text {
    flex: 1.2;
}

.expertise-text h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.expertise-text p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.commitment-full {
    padding: 6rem 5%;
    background-color: var(--neutral-light);
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 700;
}

.commitment-content p {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-alternating {
    padding: 6rem 5%;
    background-color: var(--white);
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-block {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--neutral-light);
    border-radius: 8px;
}

.approach-block h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.approach-block p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.services-detailed {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: var(--neutral-mid);
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.service-detail-info {
    flex: 1;
}

.service-detail-info h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.service-detail-info p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.service-price-box {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--neutral-light);
    border-radius: 6px;
    border-left: 4px solid var(--secondary-green);
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 0.3rem;
}

.price-amount {
    font-size: 1.8rem;
    color: var(--secondary-green);
    font-weight: 700;
}

.contact-layout {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-blocks {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.info-block {
    flex: 1;
    padding: 2rem;
    background-color: var(--neutral-light);
    border-radius: 8px;
}

.info-block h2 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-block p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.9rem;
    color: var(--text-mid);
    opacity: 0.8;
    margin-top: 0.8rem;
}

.contact-content {
    max-width: 800px;
}

.contact-content h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.contact-content h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-content p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-cta {
    padding: 5rem 5%;
    background-color: var(--neutral-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 8rem 5%;
    min-height: 60vh;
    background-color: var(--neutral-light);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-main {
    font-size: 1.2rem;
    color: var(--text-mid);
    margin-bottom: 3rem;
}

.confirmation-details {
    text-align: left;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.confirmation-details h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.confirmation-details p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.legal-page {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.legal-page p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

.legal-page a {
    color: var(--secondary-green);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--primary-green);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table thead {
    background-color: var(--neutral-light);
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    font-weight: 700;
    color: var(--primary-green);
}

.cookies-table td {
    font-size: 0.95rem;
    color: var(--text-mid);
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-text {
        padding-right: 5%;
    }

    .hero-image {
        min-height: 400px;
    }

    .intro-offset,
    .story-content,
    .expertise-section {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column !important;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .benefits-asymmetric,
    .contact-info-blocks {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .footer-column {
        flex: 1 1 100%;
    }
}