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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
    font-size: 18px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3d6849;
}

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

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

.top-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #4a7c59;
}

.ad-disclosure {
    font-size: 13px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-style: italic;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 32px 80px;
}

.article-header {
    text-align: center;
    margin-bottom: 48px;
}

.article-header h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.subheading {
    font-size: 22px;
    color: #555;
    font-style: italic;
    font-weight: 400;
}

.hero-image {
    margin: 48px 0;
    background-color: #e8e8e8;
}

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

.narrative-block {
    margin-bottom: 48px;
}

.lead-paragraph {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.narrative-block h2 {
    font-size: 36px;
    line-height: 1.3;
    margin: 56px 0 24px;
    color: #1a1a1a;
}

.narrative-block h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 32px 0 16px;
    color: #2a2a2a;
}

.inline-image {
    margin: 48px 0;
    background-color: #e8e8e8;
}

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

blockquote {
    margin: 40px 0;
    padding: 24px 32px;
    border-left: 4px solid #4a7c59;
    background-color: #f8f8f8;
    font-style: italic;
}

blockquote p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 12px;
}

blockquote cite {
    display: block;
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.inline-cta {
    display: inline-block;
    margin: 32px 0;
    padding: 14px 28px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    transition: all 0.2s ease;
}

.inline-cta:hover {
    background-color: #3d6849;
    transform: translateY(-2px);
}

.insight-section {
    margin: 64px 0;
}

.citation {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
}

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

.testimonial-inline {
    margin: 56px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #2a2a2a;
}

.testimonial-card cite {
    display: block;
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.benefits-reveal {
    margin: 64px 0;
}

.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

.benefit-item {
    padding: 28px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.benefit-item h3 {
    font-size: 22px;
    margin: 0 0 12px;
    color: #1a1a1a;
}

.benefit-item p {
    margin: 0;
    line-height: 1.7;
    color: #444;
}

.approach-detail {
    margin: 64px 0;
}

.framework-list {
    margin: 24px 0;
    padding-left: 24px;
}

.framework-list li {
    margin-bottom: 16px;
    line-height: 1.7;
}

.trust-building {
    margin: 64px 0;
}

.disclaimer-box {
    margin: 48px 0;
    padding: 24px;
    background-color: #fff8e1;
    border: 1px solid #f0d08b;
    border-radius: 6px;
}

.disclaimer-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
}

.cta-section {
    margin: 72px 0;
    padding: 48px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.cta-section > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 19px;
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
}

.service-form h3 {
    font-size: 22px;
    margin-bottom: 24px;
    text-align: center;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.service-option {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-option:hover {
    border-color: #4a7c59;
    background-color: #f9f9f9;
}

.service-option input[type="radio"] {
    margin-top: 4px;
    margin-right: 16px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-details strong {
    font-size: 18px;
    color: #1a1a1a;
}

.service-description {
    font-size: 15px;
    color: #666;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-fields input[type="text"],
.form-fields input[type="email"] {
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-fields input:focus {
    outline: none;
    border-color: #4a7c59;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background-color: #3d6849;
    transform: translateY(-2px);
}

.scientific-references {
    margin: 64px 0 0;
    padding: 32px 0;
    border-top: 1px solid #e0e0e0;
}

.scientific-references h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.scientific-references ol {
    padding-left: 24px;
}

.scientific-references li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.scientific-references a {
    color: #4a7c59;
    text-decoration: none;
}

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

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 56px 0 24px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 32px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.principle-block {
    margin: 32px 0;
}

.principle-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-detailed {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 56px 0;
}

.service-content {
    flex: 1;
}

.service-image {
    width: 100%;
    background-color: #e8e8e8;
}

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

.service-duration {
    font-size: 17px;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.service-content h3 {
    font-size: 22px;
    margin: 24px 0 12px;
}

.service-content ul {
    padding-left: 24px;
    margin: 16px 0;
}

.service-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.service-outcome {
    margin: 20px 0;
    padding: 20px;
    background-color: #f5f5f5;
    border-left: 4px solid #4a7c59;
    font-style: italic;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #4a7c59;
    margin-top: 24px;
}

.pricing-note {
    margin: 48px 0;
    padding: 24px;
    background-color: #f8f8f8;
    border-radius: 6px;
}

.pricing-note p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-info-block {
    margin: 32px 0;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
}

.contact-note {
    font-size: 16px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

.contact-image {
    width: 100%;
    background-color: #e8e8e8;
}

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

.contact-guidance {
    margin: 32px 0;
}

.contact-guidance h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-guidance ul {
    padding-left: 24px;
    margin: 24px 0;
}

.contact-guidance li {
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-guidance a {
    color: #4a7c59;
    text-decoration: none;
}

.contact-guidance a:hover {
    text-decoration: underline;
}

.thanks-message {
    text-align: center;
    max-width: 640px;
    margin: 80px auto;
}

.thanks-message h1 {
    font-size: 48px;
    margin-bottom: 32px;
}

.thanks-content {
    text-align: left;
}

.service-confirmation {
    padding: 20px;
    background-color: #f0f8f4;
    border: 1px solid #4a7c59;
    border-radius: 6px;
    margin: 24px 0;
    font-weight: 600;
    color: #2a2a2a;
}

.next-steps {
    padding-left: 24px;
    margin: 24px 0;
}

.next-steps li {
    margin-bottom: 20px;
    line-height: 1.7;
}

.helpful-links {
    padding-left: 24px;
    margin: 24px 0;
}

.helpful-links li {
    margin-bottom: 12px;
}

.helpful-links a {
    color: #4a7c59;
    text-decoration: none;
}

.helpful-links a:hover {
    text-decoration: underline;
}

.legal-content {
    max-width: 860px;
}

.legal-date {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.legal-section {
    margin-top: 48px;
}

.legal-section h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: #2a2a2a;
}

.legal-section p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-section ul {
    padding-left: 24px;
    margin: 16px 0;
}

.legal-section li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-section a {
    color: #4a7c59;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .service-detailed:nth-child(even) {
        flex-direction: row;
    }

    .service-detailed:nth-child(odd) {
        flex-direction: row-reverse;
    }

    .service-content {
        flex: 1;
    }

    .service-image {
        flex: 1;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 36px;
    }

    .subheading {
        font-size: 19px;
    }

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

    .narrative-block h2 {
        font-size: 28px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: flex-end;
    }

    .ad-disclosure {
        font-size: 11px;
        padding: 3px 8px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
}