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

:root {
    --primary-color: #2c5530;
    --secondary-color: #5a8f5e;
    --accent-color: #d97638;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.header-minimal {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 28px;
}

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

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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-medium {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-overlay {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 30px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

.narrow-story {
    padding: 90px 0;
    background-color: var(--bg-white);
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 500;
}

.narrow-story p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text-light);
}

.problem-amplification {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.problem-amplification h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--text-dark);
    text-align: center;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-left img,
.content-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.check-list {
    list-style: none;
    margin-top: 24px;
}

.check-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.cta-inline {
    padding: 70px 0;
    background-color: var(--bg-white);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 28px;
}

.btn-accent {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.insight-reveal {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.insight-reveal h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

.card-grid-three {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.insight-card {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.insight-card:hover {
    transform: translateY(-6px);
}

.insight-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.insight-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
}

.insight-card p {
    padding: 0 24px 24px;
    color: var(--text-light);
    font-size: 16px;
}

.story-scenario {
    padding: 90px 0;
    background-color: var(--bg-white);
}

.story-scenario h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
}

.scenario-intro {
    font-size: 19px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-light);
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 28px;
    margin: 40px 0;
    font-style: italic;
    font-size: 20px;
    color: var(--text-dark);
}

.trust-building {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.trust-building h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
}

.split-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-visual {
    flex: 1;
}

.content-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.disclaimer-inline {
    margin-top: 32px;
    padding: 20px;
    background-color: #fff9f5;
    border-left: 3px solid var(--accent-color);
    border-radius: 4px;
}

.testimonials-inline {
    padding: 90px 0;
    background-color: var(--bg-white);
}

.testimonials-inline h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.testimonial-block {
    margin-bottom: 40px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

.benefits-reveal {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.benefits-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 24px;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    transition: box-shadow 0.3s;
}

.service-item:hover {
    box-shadow: var(--shadow-lg);
}

.service-item.featured {
    border: 2px solid var(--primary-color);
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.service-header h3 {
    font-size: 26px;
    color: var(--text-dark);
}

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

.service-body p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-body ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-body ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.service-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
}

.btn-select {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-section {
    padding: 90px 0;
    background-color: var(--bg-white);
}

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.main-form {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-primary-large {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.final-assurance {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.final-assurance h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

.assurance-list {
    display: flex;
    gap: 48px;
    justify-content: center;
}

.assurance-item {
    flex: 1;
    text-align: center;
}

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

.assurance-item p {
    font-size: 16px;
    color: var(--text-light);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    padding: 16px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 999;
}

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

.sticky-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-sticky:hover {
    background-color: #c46530;
}

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

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-references {
    margin-bottom: 32px;
    padding: 24px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.footer-references h4 {
    font-size: 17px;
    margin-bottom: 12px;
}

.footer-references ol {
    margin-left: 20px;
}

.footer-references ol li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-references a {
    color: #88c48f;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    margin-bottom: 32px;
    padding: 24px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    padding: 24px 0;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--primary-color);
}

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

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--text-light);
}

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.about-content,
.mission-section,
.values-section,
.cta-section,
.services-list,
.service-cta,
.contact-content,
.faq-section,
.thanks-content,
.legal-content {
    padding: 70px 0;
}

.about-content h2,
.mission-section h2,
.values-section h2 {
    font-size: 32px;
    margin-bottom: 28px;
}

.about-content p,
.mission-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.values-section {
    background-color: var(--bg-light);
}

.value-card {
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
}

.cta-section {
    background-color: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-map-placeholder {
    flex: 1;
}

.contact-map-placeholder img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.map-caption {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-section {
    background-color: var(--bg-light);
}

.faq-item {
    background-color: white;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-box {
    text-align: center;
    padding: 60px 40px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.thanks-box h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.order-summary {
    background-color: white;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 48px;
    box-shadow: var(--shadow);
}

.next-steps {
    text-align: left;
    margin: 48px 0;
}

.step {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    color: var(--text-light);
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 48px;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .split-content,
    .split-reverse,
    .footer-columns,
    .contact-layout,
    .assurance-list {
        flex-direction: column;
    }

    .card-grid-three {
        flex-direction: column;
    }

    .sticky-content {
        flex-direction: column;
        gap: 16px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}