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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2e;
    --accent-earth: #8b6f47;
    --light-bg: #f8f6f3;
    --dark-text: #1a1a1a;
    --mid-gray: #666;
    --light-gray: #e8e6e3;
    --white: #ffffff;
}

body {
    font-family: 'Georgia', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-text);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

.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: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-minimal {
    padding: 20px 0;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--light-gray);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(to bottom, var(--light-bg) 0%, var(--white) 100%);
}

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto 60px;
    padding: 0 30px;
    text-align: center;
}

.hero-text-narrow h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-green);
    font-weight: 400;
}

.hero-lead {
    font-size: 24px;
    line-height: 1.6;
    color: var(--mid-gray);
}

.hero-image-inline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-image-inline img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-block {
    padding: 80px 30px;
}

.text-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.text-narrow-center {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.opening-paragraph {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--dark-text);
}

.content-block p {
    margin-bottom: 24px;
}

.content-block h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--primary-green);
    font-weight: 400;
}

.content-block h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--primary-green);
    font-weight: 400;
}

.cta-inline-block {
    padding: 60px 30px;
    text-align: center;
    background: var(--light-bg);
}

.cta-inline-block.secondary {
    background: var(--white);
}

.cta-intro {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--mid-gray);
}

.btn-inline,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-green);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-inline:hover,
.btn-secondary:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--accent-earth);
}

.btn-secondary:hover {
    background: #6d5435;
}

.content-block-image {
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.inline-image-right {
    flex: 0 0 400px;
}

.inline-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.text-with-image {
    flex: 1;
}

.text-with-image h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--primary-green);
    font-weight: 400;
}

.text-with-image p {
    margin-bottom: 24px;
}

.insight-block {
    padding: 100px 30px;
    background: var(--primary-green);
    color: var(--white);
}

.insight-text {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.insight-block h3 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 400;
}

.testimonial-inline {
    padding: 80px 30px;
    background: var(--light-bg);
}

.testimonial-inline.alternate {
    background: var(--white);
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    color: var(--dark-text);
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: var(--mid-gray);
}

.full-width-image {
    margin: 80px 0;
}

.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits-grid {
    padding: 80px 30px;
    background: var(--light-bg);
}

.benefits-container {
    max-width: 1200px;
    margin: 60px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-green);
}

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

.trust-building {
    padding: 100px 30px;
    background: var(--white);
}

.service-showcase {
    max-width: 1200px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 8px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--secondary-green);
    transform: translateY(-4px);
}

.service-card.featured {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-earth);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card > p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-card.featured > p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card.featured .service-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

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

.service-card.featured .service-features li:before {
    color: var(--accent-earth);
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.service-card.featured .service-pricing {
    border-color: rgba(255, 255, 255, 0.3);
}

.price-label {
    font-size: 16px;
    color: var(--mid-gray);
}

.service-card.featured .price-label {
    color: rgba(255, 255, 255, 0.8);
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
}

.service-card.featured .price {
    color: var(--white);
}

.btn-service {
    width: 100%;
    padding: 18px;
    background: var(--secondary-green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

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

.service-card.featured .btn-service {
    background: var(--accent-earth);
}

.service-card.featured .btn-service:hover {
    background: #6d5435;
}

.urgency-block {
    padding: 100px 30px;
    background: var(--accent-earth);
    color: var(--white);
}

.urgency-block h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--white);
}

.urgency-block p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.final-cta-block {
    padding: 100px 30px;
    background: var(--light-bg);
}

.cta-content-centered {
    max-width: 680px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-green);
    text-align: center;
}

.cta-content-centered > p {
    font-size: 20px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--mid-gray);
}

.service-form {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    border: 2px solid var(--light-gray);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary-green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    font-weight: 600;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 500;
}

.btn-sticky {
    display: block;
    padding: 16px 32px;
    background: var(--accent-earth);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #6d5435;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 60px 30px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--white);
}

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

.thanks-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 30px;
    background: var(--light-bg);
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.thanks-content .btn-inline {
    margin-top: 30px;
}

.page-header {
    padding: 100px 30px 60px;
    background: var(--light-bg);
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 400;
}

.page-header p {
    font-size: 22px;
    color: var(--mid-gray);
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
}

.page-content h2 {
    font-size: 36px;
    margin: 50px 0 20px;
    color: var(--primary-green);
}

.page-content h3 {
    font-size: 28px;
    margin: 40px 0 15px;
    color: var(--secondary-green);
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.7;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.info-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
}

.info-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

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

@media (max-width: 768px) {
    .hero-text-narrow h1 {
        font-size: 38px;
    }

    .hero-lead {
        font-size: 20px;
    }

    .content-block-image {
        flex-direction: column;
    }

    .inline-image-right {
        flex: 1;
        width: 100%;
    }

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

    .benefit-item {
        flex: 1 1 100%;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .service-card {
        padding: 30px;
    }

    .service-form {
        padding: 30px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .btn-sticky {
        padding: 12px 24px;
        font-size: 14px;
    }
}