/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    color: #2d6a4f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1b4332;
}

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

/* Navigation */
.top-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e6;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d6a4f;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.brand a {
    color: inherit;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 3px;
}

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

.nav-links a {
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #495057;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2d6a4f;
    border-bottom-color: #2d6a4f;
}

/* Editorial Container - Main Article Layout */
.editorial-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 3rem;
    text-align: center;
}

.hero-image-wrapper {
    margin-bottom: 2rem;
    background-color: #e8f3ea;
    border-radius: 4px;
    overflow: hidden;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Story Sections */
.story-intro {
    margin-bottom: 3.5rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-intro p {
    margin-bottom: 1.2rem;
}

/* Inline Visual Sections - Float Images */
.inline-visual-section {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
}

.image-float-left,
.image-float-right {
    width: 100%;
    margin-bottom: 1.5rem;
    background-color: #e8f3ea;
    border-radius: 4px;
    overflow: hidden;
}

.text-content h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.text-content h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.text-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.text-content p {
    margin-bottom: 1.2rem;
}

/* Desktop Layout for Float Images */
@media (min-width: 768px) {
    .inline-visual-section {
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .inline-visual-section.reverse {
        flex-direction: row-reverse;
    }

    .image-float-left,
    .image-float-right {
        width: 45%;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .text-content {
        flex: 1;
    }
}

/* Reference Links */
.reference-link {
    font-size: 0.9rem;
    color: #2d6a4f;
    font-weight: 600;
    border-bottom: 1px dotted #2d6a4f;
    transition: border-bottom 0.3s ease;
}

.reference-link:hover {
    border-bottom-style: solid;
}

/* Problem Amplification Section */
.problem-amplification {
    margin-bottom: 4rem;
}

.problem-amplification h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.problem-amplification p {
    margin-bottom: 1.2rem;
}

.insight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #2d6a4f;
    padding: 2rem;
    margin: 2rem 0;
}

.insight-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.insight-attribution {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Trust Building Section */
.trust-building {
    margin-bottom: 4rem;
}

.trust-building h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.trust-building p {
    margin-bottom: 1.2rem;
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 3rem 0 4rem;
}

.testimonial-card {
    background-color: #e8f3ea;
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 5px solid #2d6a4f;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d6a4f;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Benefits Section */
.benefits-reveal {
    margin-bottom: 4rem;
}

.benefits-reveal h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.benefits-list {
    margin-top: 2rem;
}

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

.benefit-item h3 {
    font-size: 1.4rem;
    color: #2d6a4f;
    margin-bottom: 0.8rem;
}

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

/* Service Pricing Inline */
.service-pricing-inline {
    margin-top: 2rem;
}

.service-item-compact {
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.service-item-compact:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-item-compact h4 {
    font-size: 1.2rem;
    color: #2d6a4f;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.service-item-compact p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    color: #495057;
}

.service-item-compact .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 0;
}

/* CTA Narrative */
.cta-narrative {
    margin-bottom: 3rem;
}

.cta-narrative h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.cta-narrative p {
    margin-bottom: 1.2rem;
}

/* Form Section */
.form-section {
    margin: 4rem 0;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid #e8e8e6;
}

.form-wrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-wrapper > p {
    margin-bottom: 2rem;
    color: #495057;
}

.editorial-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d6a4f;
}

.submit-btn {
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.submit-btn:active {
    transform: translateY(0);
}

/* Disclaimer Section */
.disclaimer-section {
    margin: 4rem 0 3rem;
    padding: 2rem;
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5a5a5a;
}

/* References Section */
.references-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e8e8e6;
}

.references-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.references-list li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.references-list a {
    color: #2d6a4f;
    text-decoration: underline;
}

/* Page Header (for non-homepage pages) */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e6;
}

.page-header h1 {
    font-size: 2.3rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.subheading {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-style: italic;
}

.legal-update {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Text Sections */
.text-section {
    margin-bottom: 3rem;
}

.text-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.text-section p {
    margin-bottom: 1.2rem;
}

/* Values Section */
.values-section {
    margin: 4rem 0;
}

.values-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    padding: 2rem;
    border-radius: 4px;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2d6a4f;
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section Simple */
.cta-section-simple {
    margin: 4rem 0;
    text-align: center;
    padding: 3rem 2rem;
    background-color: #e8f3ea;
    border-radius: 4px;
}

.cta-section-simple h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section-simple p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #495057;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background-color: #2d6a4f;
    color: #ffffff;
}

.cta-btn.primary:hover {
    background-color: #1b4332;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background-color: transparent;
    color: #2d6a4f;
    border-color: #2d6a4f;
}

.cta-btn.secondary:hover {
    background-color: #2d6a4f;
    color: #ffffff;
}

/* Services Detailed */
.services-detailed {
    margin: 3rem 0;
}

.service-detail-card {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.service-image-container {
    background-color: #e8f3ea;
    border-radius: 4px;
    overflow: hidden;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d6a4f;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-details-list {
    margin-bottom: 2rem;
}

.service-details-list h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-details-list ul {
    padding-left: 1.5rem;
}

.service-details-list li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.service-pricing-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-label {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2d6a4f;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.price-note {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    width: 100%;
    margin-top: 0.5rem;
}

.service-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2d6a4f;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: #1b4332;
    transform: translateY(-2px);
}

.service-notes {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.service-notes h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-notes p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Desktop Layout for Service Cards */
@media (min-width: 768px) {
    .service-detail-card {
        flex-direction: row;
        gap: 3rem;
    }

    .service-detail-card.reverse {
        flex-direction: row-reverse;
    }

    .service-image-container {
        width: 40%;
        flex-shrink: 0;
    }

    .service-detail-content {
        flex: 1;
    }
}

/* Contact Page */
.contact-content {
    margin: 3rem 0;
}

.contact-info-block,
.contact-text-section,
.location-description {
    margin-bottom: 3rem;
}

.contact-info-block h2,
.contact-text-section h2,
.location-description h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2d6a4f;
}

.contact-detail p {
    line-height: 1.6;
    color: #495057;
}

.email-display {
    font-family: 'Courier New', monospace;
    font-size: 1.05rem;
    color: #2c3e50;
}

.info-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-cta-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #e8f3ea;
    border-radius: 4px;
    text-align: center;
}

.contact-cta-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #495057;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
}

.thanks-content {
    padding: 2rem 0;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2d6a4f;
}

.thanks-lead {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #495057;
}

.thanks-details {
    text-align: left;
    margin: 3rem 0;
}

.thanks-details h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.next-steps {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-number {
    background-color: #2d6a4f;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    line-height: 1.6;
    color: #495057;
}

.service-confirmation {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #e8f3ea;
    border-radius: 4px;
}

.service-confirmation h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.selected-service-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d6a4f;
}

.thanks-additional {
    margin: 3rem 0;
    text-align: left;
}

.thanks-additional h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-additional p {
    margin-bottom: 1.5rem;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thanks-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #ffffff;
    border: 2px solid #2d6a4f;
    color: #2d6a4f;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

.thanks-link:hover {
    background-color: #2d6a4f;
    color: #ffffff;
}

.thanks-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
    text-align: left;
}

.thanks-note p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a5a5a;
}

/* Legal Pages */
.legal-page .legal-content {
    margin-top: 2rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

.footer-section a {
    color: #bdc3c7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* Desktop Footer Layout */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .thanks-links {
        flex-direction: row;
        gap: 1.5rem;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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 {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.cookie-content a {
    color: #52c4a3;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #1b4332;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #ecf0f1;
    border: 2px solid #ecf0f1;
}

.cookie-btn.reject:hover {
    background-color: #ecf0f1;
    color: #2c3e50;
}

/* Desktop Cookie Banner */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

    .cookie-buttons {
        flex-shrink: 0;
    }
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .ad-disclosure {
        order: -1;
        font-size: 0.7rem;
    }
}

/* Responsive Typography */
@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

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

    .page-header h1 {
        font-size: 1.8rem;
    }

    .text-content h2 {
        font-size: 1.5rem;
    }

    .lead-text {
        font-size: 1.15rem;
    }

    .editorial-container {
        padding: 2rem 1.5rem 3rem;
    }
}