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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5a3d;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d5a3d;
}

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-immersive {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    background-color: #d4e4d8;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    font-style: italic;
    opacity: 0.95;
}

.story-opener {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.opening-thought {
    font-size: 1.35rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #34495e;
    line-height: 1.8;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.insight-reveal {
    padding: 4rem 2rem;
    background-color: #f4f7f5;
}

.split-insight {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.insight-visual {
    flex: 1;
    background-color: #d4e4d8;
}

.insight-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
    font-weight: 500;
}

.insight-text p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.citation {
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
}

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

.problem-amplification {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.content-block {
    max-width: 850px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2d5a3d;
    font-weight: 500;
}

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

.visual-interlude {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

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

.image-grid-flow img {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #d4e4d8;
}

.trust-layer {
    padding: 5rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
}

.testimonial-flow {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-item {
    background-color: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-left: 4px solid #7fb89a;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.attribution {
    font-size: 0.95rem;
    text-align: right;
    opacity: 0.85;
}

.benefit-deep-dive {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.benefit-list {
    margin-top: 3rem;
}

.benefit-item {
    margin-bottom: 3rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: #2d5a3d;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-soft {
    padding: 4rem 2rem;
    background-color: #f4f7f5;
    text-align: center;
}

.cta-block {
    max-width: 750px;
    margin: 0 auto;
}

.cta-block p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #234a2f;
}

.services-reveal {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d5a3d;
    font-weight: 500;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: #34495e;
}

.service-cards-vertical {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 2rem;
    background-color: #f4f7f5;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-image {
    flex: 1;
    background-color: #d4e4d8;
}

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

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

.service-details h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
    font-weight: 500;
}

.service-details p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 1.8rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #234a2f;
}

.final-thought {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.final-thought h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
    font-weight: 500;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
    text-align: center;
    font-weight: 500;
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 3rem;
    color: #34495e;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
}

.form-group textarea {
    resize: vertical;
}

.selected-service-display {
    background-color: #f4f7f5;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.selected-service-display p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.submit-button {
    width: 100%;
    padding: 1.1rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #234a2f;
}

.references {
    padding: 3rem 2rem;
    background-color: #f4f7f5;
}

.references h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
    font-weight: 500;
}

.reference-list {
    padding-left: 1.5rem;
}

.reference-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reference-list a {
    color: #2d5a3d;
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #7f8c8d;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

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

.footer-section a:hover {
    color: #7fb89a;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #234a2f;
}

.cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5d6d6e;
}

.cookie-actions a {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .split-insight {
        flex-direction: column;
    }

    .image-grid-flow {
        flex-direction: column;
    }

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

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

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