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

:root {
    --primary-green: #2d5016;
    --accent-sage: #7a9b76;
    --earth-brown: #8b6f47;
    --light-cream: #f5f3ed;
    --dark-text: #1a1a1a;
    --mid-gray: #666666;
    --border-light: #e0ddd3;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-text);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    background-color: var(--primary-green);
    color: #ffffff;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
}

.btn-cookie.secondary {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.btn-cookie:hover {
    opacity: 0.9;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

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

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

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark-text);
}

/* Split Screen Hero */
.hero-split {
    display: flex;
    min-height: 90vh;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background-color: var(--light-cream);
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--mid-gray);
}

.split-right.hero-image {
    overflow: hidden;
}

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

/* CTAs */
.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-green);
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.cta-secondary:hover {
    background-color: var(--primary-green);
    color: #ffffff;
}

/* Impact Metrics */
.impact-metrics {
    padding: 4rem 5%;
    background-color: var(--primary-green);
    color: #ffffff;
}

.metrics-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.metric-label {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Split Container */
.split-container {
    display: flex;
    align-items: stretch;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.content-half {
    flex: 1;
}

.content-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-block {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

/* Problem Statement */
.problem-statement {
    margin: 5rem 0;
}

/* Approach Section */
.approach-section {
    padding: 5rem 5%;
    background-color: var(--light-cream);
}

.approach-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

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

.step-item {
    flex: 1;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-sage);
    display: block;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.step-item p {
    color: var(--mid-gray);
    line-height: 1.7;
}

/* Services Showcase */
.services-showcase {
    padding: 5rem 5%;
}

.services-showcase h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--mid-gray);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.service-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--mid-gray);
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.service-price {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--earth-brown);
    margin-bottom: 1rem;
}

.btn-select {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-green);
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #1f3810;
}

.service-card.selected {
    border: 2px solid var(--primary-green);
}

/* Testimonial */
.testimonial-split {
    margin: 5rem 0;
}

.testimonial-text {
    background-color: var(--light-cream);
    padding: 4rem;
}

blockquote {
    border-left: 4px solid var(--primary-green);
    padding-left: 2rem;
}

blockquote p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: var(--mid-gray);
    font-size: 1rem;
}

/* Form Section */
.form-section {
    padding: 5rem 5%;
    background-color: var(--light-cream);
}

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

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

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

.main-form {
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid var(--border-light);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--primary-green);
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

/* CTA Final */
.cta-final {
    padding: 5rem 5%;
    background-color: var(--primary-green);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Case Study */
.case-study-preview {
    margin: 5rem 0;
}

/* Footer */
.main-footer {
    background-color: var(--dark-text);
    color: #ffffff;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #cccccc;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-sage);
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 1.5rem;
    text-align: center;
    color: #888888;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 1.8rem;
    background-color: var(--earth-brown);
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-2px);
}

/* Page Hero */
.page-hero {
    padding: 5rem 5%;
    background-color: var(--light-cream);
    text-align: center;
}

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

.hero-content.centered p {
    font-size: 1.3rem;
    color: var(--mid-gray);
}

/* About Page */
.about-intro {
    margin: 5rem 0;
}

.expertise-section {
    padding: 5rem 5%;
    background-color: var(--light-cream);
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

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

.expertise-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid var(--primary-green);
}

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.expertise-card p {
    line-height: 1.7;
    color: var(--mid-gray);
}

/* Project Examples */
.project-examples {
    padding: 5rem 5%;
}

.project-examples h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-green);
}

.project-item {
    margin-bottom: 5rem;
}

.project-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

/* Team Philosophy */
.team-philosophy {
    padding: 5rem 5%;
    background-color: var(--primary-green);
    color: #ffffff;
}

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

.centered-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.centered-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Values */
.values-section {
    padding: 5rem 5%;
}

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

.values-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

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

/* CTA About */
.cta-about {
    padding: 4rem 5%;
    background-color: var(--light-cream);
    text-align: center;
}

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

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

/* Services Detail */
.services-detail {
    padding: 3rem 0;
}

.service-detail-item {
    margin-bottom: 5rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--earth-brown);
    margin-bottom: 1.5rem;
    display: block;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--mid-gray);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

/* Service Combinations */
.service-combinations {
    padding: 4rem 5%;
    background-color: var(--light-cream);
}

.service-combinations .centered-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.service-combinations .centered-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--mid-gray);
}

/* CTA Services */
.cta-services {
    padding: 4rem 5%;
    text-align: center;
}

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

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

/* Contact Page */
.contact-content {
    padding: 4rem 0;
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.contact-item p,
.contact-item a {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--mid-gray);
}

.contact-item a:hover {
    color: var(--primary-green);
}

.field-work-note {
    background-color: var(--light-cream);
    padding: 1.5rem;
    border-left: 4px solid var(--earth-brown);
    margin-top: 2rem;
}

.field-work-note p {
    font-size: 0.95rem;
    color: var(--mid-gray);
}

.contact-image {
    height: 100%;
    min-height: 500px;
}

/* Service Areas */
.service-areas {
    padding: 4rem 5%;
    background-color: var(--light-cream);
}

.service-areas .centered-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.service-areas .centered-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--mid-gray);
    margin-bottom: 1rem;
}

/* FAQ */
.faq-section {
    padding: 4rem 5%;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.faq-item p {
    line-height: 1.7;
    color: var(--mid-gray);
}

/* CTA Contact */
.cta-contact {
    padding: 4rem 5%;
    background-color: var(--light-cream);
    text-align: center;
}

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

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

/* Thanks Page */
.thanks-section {
    padding: 5rem 5%;
    min-height: 70vh;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--mid-gray);
    margin-bottom: 2rem;
}

.submission-details {
    background-color: var(--light-cream);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.submission-details p {
    font-size: 1.05rem;
    color: var(--dark-text);
}

.next-steps {
    margin: 4rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-green);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.step-text p {
    line-height: 1.6;
    color: var(--mid-gray);
}

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

.contact-reminder {
    margin-top: 3rem;
    font-size: 1.05rem;
    color: var(--mid-gray);
}

.contact-reminder a {
    color: var(--primary-green);
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 5%;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

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

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--mid-gray);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: var(--mid-gray);
}

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

.text-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-light);
        gap: 1rem;
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .split-left {
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .split-right.hero-image {
        min-height: 300px;
    }

    .metrics-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .text-block {
        padding: 2rem;
    }

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

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

    .service-card {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.8rem 1.3rem;
        font-size: 0.9rem;
    }

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

    .expertise-card {
        min-width: 100%;
    }

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

    .faq-item {
        min-width: 100%;
    }

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

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

    .page-hero {
        padding: 3rem 5%;
    }

    .hero-content.centered h1 {
        font-size: 2rem;
    }

    .main-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .metric-number {
        font-size: 2.2rem;
    }

    .text-block h2 {
        font-size: 1.7rem;
    }

    .approach-header h2,
    .services-showcase h2,
    .form-intro h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }
}