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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c59;
    --accent-green: #6b9080;
    --light-green: #a4c3b2;
    --dark-text: #1a1a1a;
    --medium-text: #4a4a4a;
    --light-text: #6a6a6a;
    --background-light: #f8f9f7;
    --white: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-text);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: var(--white);
    color: var(--dark-text);
}

.main-header {
    background-color: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-section {
    flex: 0 0 auto;
}

.brand-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    flex: 1 1 auto;
    text-align: center;
    padding: 0 1rem;
}

.ad-label {
    font-size: 0.75rem;
    color: var(--light-text);
    background-color: var(--background-light);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
}

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    transition: all 0.3s ease;
}

.hero-offset {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45,80,22,0.7) 0%, rgba(74,124,89,0.5) 100%);
}

.hero-content-wrap {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.hero-text-block {
    position: relative;
    margin-left: 55%;
    background-color: var(--white);
    padding: 4rem 3rem;
    max-width: 550px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    transform: translateY(-3rem);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.cta-primary:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,80,22,0.3);
}

.intro-asymmetric {
    padding: 8rem 2rem 6rem;
    background-color: var(--background-light);
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1 1 55%;
}

.section-heading {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--medium-text);
    line-height: 1.8;
}

.intro-right {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-left: 4px solid var(--secondary-green);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.stat-card.offset-top {
    transform: translateX(-3rem);
}

.stat-card.offset-bottom {
    transform: translateX(3rem);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--medium-text);
    line-height: 1.5;
}

.value-proposition-irregular {
    padding: 0;
    background-color: var(--white);
}

.value-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.value-image-block {
    flex: 1 1 45%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    transform: translateX(2rem);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(74,124,89,0.4) 0%, rgba(107,144,128,0.2) 100%);
}

.value-content-block {
    flex: 1 1 55%;
    padding: 6rem 4rem 6rem 6rem;
    background-color: var(--background-light);
}

.value-heading {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 700;
}

.value-text {
    font-size: 1.0625rem;
    color: var(--medium-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-preview {
    padding: 8rem 2rem;
    background-color: var(--white);
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding-left: 15%;
}

.services-main-title {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--medium-text);
}

.services-layout-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}

.service-card.card-large {
    flex: 1 1 calc(60% - 1rem);
}

.service-card.card-offset {
    flex: 1 1 calc(40% - 1rem);
    transform: translateY(3rem);
}

.service-card.card-small {
    flex: 1 1 calc(35% - 1rem);
    transform: translateY(-2rem);
}

.service-card.card-wide {
    flex: 1 1 calc(65% - 1rem);
}

.service-card.card-medium {
    flex: 1 1 calc(48% - 1rem);
}

.service-card.card-tall {
    flex: 1 1 calc(52% - 1rem);
    transform: translateY(2rem);
}

.service-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-description {
    font-size: 0.9375rem;
    color: var(--medium-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

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

.btn-select-service {
    padding: 0.875rem 2rem;
    background-color: var(--secondary-green);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.testimonial-offset {
    padding: 6rem 2rem;
    background-color: var(--background-light);
}

.testimonial-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.testimonial-quote {
    flex: 1 1 55%;
    padding: 3rem;
    background-color: var(--white);
    border-left: 6px solid var(--secondary-green);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transform: translateY(-2rem);
}

.quote-text {
    font-size: 1.375rem;
    line-height: 1.7;
    color: var(--dark-text);
    font-style: italic;
    margin-bottom: 2rem;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-green);
}

.author-title {
    font-size: 0.9375rem;
    color: var(--light-text);
}

.testimonial-visual {
    flex: 1 1 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    transform: translateY(2rem);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74,124,89,0.3) 0%, rgba(107,144,128,0.1) 100%);
    border-radius: 8px;
}

.contact-form-section {
    padding: 8rem 2rem;
    background-color: var(--white);
}

.form-wrapper-offset {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 20%;
}

.form-intro {
    margin-bottom: 3rem;
}

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

.form-subheading {
    font-size: 1.125rem;
    color: var(--medium-text);
    line-height: 1.7;
}

.contact-form {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: 8px;
}

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

.form-row {
    display: flex;
    gap: 2rem;
}

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

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(74,124,89,0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 2rem;
}

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

.btn-submit:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,80,22,0.3);
}

.trust-indicators-irregular {
    padding: 6rem 2rem 8rem;
    background-color: var(--background-light);
}

.trust-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-top: 4px solid var(--secondary-green);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.trust-item.offset-right {
    transform: translateY(3rem);
}

.trust-item.offset-left {
    transform: translateY(-3rem);
}

.trust-heading {
    font-size: 1.375rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-text {
    font-size: 0.9375rem;
    color: var(--medium-text);
    line-height: 1.7;
}

.main-footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-heading {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--light-green);
}

.footer-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-green);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #9a9a9a;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #808080;
}

@media (max-width: 1024px) {
    .hero-background {
        width: 100%;
    }

    .hero-text-block {
        margin-left: 0;
        max-width: 100%;
    }

    .intro-container {
        flex-direction: column;
        gap: 3rem;
    }

    .stat-card.offset-top,
    .stat-card.offset-bottom {
        transform: translateX(0);
    }

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

    .value-image-block {
        transform: translateX(0);
        min-height: 400px;
    }

    .value-content-block {
        padding: 3rem 2rem;
    }

    .services-header-offset {
        padding-left: 0;
    }

    .service-card.card-large,
    .service-card.card-offset,
    .service-card.card-small,
    .service-card.card-wide,
    .service-card.card-medium,
    .service-card.card-tall {
        flex: 1 1 100%;
        transform: translateY(0);
    }

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

    .testimonial-quote,
    .testimonial-visual {
        transform: translateY(0);
    }

    .form-wrapper-offset {
        margin-left: auto;
    }

    .trust-item.offset-right,
    .trust-item.offset-left {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .services-main-title {
        font-size: 2.25rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

.about-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
}

.about-hero-content {
    max-width: 1400px;
    margin: 0 auto;
}

.about-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-subtitle {
    font-size: 1.375rem;
    line-height: 1.6;
    opacity: 0.95;
}

.about-story {
    padding: 8rem 2rem;
    background-color: var(--white);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-section {
    margin-bottom: 5rem;
}

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

.story-text {
    font-size: 1.0625rem;
    color: var(--medium-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.team-section {
    padding: 6rem 2rem;
    background-color: var(--background-light);
}

.team-intro {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
}

.contact-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
}

.contact-hero-content {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-info-section {
    padding: 8rem 2rem;
    background-color: var(--white);
}

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

.contact-details {
    flex: 1 1 50%;
}

.contact-detail-item {
    margin-bottom: 3rem;
}

.detail-heading {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.detail-text {
    font-size: 1.0625rem;
    color: var(--medium-text);
    line-height: 1.7;
}

.contact-map {
    flex: 1 1 50%;
    min-height: 400px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.services-detail-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
}

.services-detail-content {
    max-width: 1400px;
    margin: 0 auto;
}

.services-detail-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.services-list-section {
    padding: 8rem 2rem;
    background-color: var(--white);
}

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

.service-detail-card {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: 8px;
    border-left: 6px solid var(--secondary-green);
}

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

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

.service-detail-description {
    font-size: 1.0625rem;
    color: var(--medium-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: var(--white);
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.thanks-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-text {
    font-size: 1.125rem;
    color: var(--medium-text);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

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

.legal-page {
    padding: 8rem 2rem;
    background-color: var(--white);
}

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

.legal-title {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 700;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-heading {
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-subheading {
    font-size: 1.375rem;
    color: var(--secondary-green);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-text {
    font-size: 1rem;
    color: var(--medium-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-list {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-list li {
    font-size: 1rem;
    color: var(--medium-text);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
