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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fefefe;
}

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

a {
    color: #1a5f7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3d4f;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #ddd;
    font-family: Arial, sans-serif;
}

/* Navigation - Minimal Style for Editorial */
.nav-minimal {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a5f7a;
}

/* Editorial Main Container */
.editorial-main {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Hero Editorial Style */
.hero-editorial {
    margin-bottom: 4rem;
}

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-image {
    width: 100%;
    margin: 2rem 0;
    border-radius: 2px;
}

/* Content Blocks */
.content-block,
.content-block-alt,
.content-block-centered,
.content-block-final {
    margin-bottom: 3.5rem;
}

.content-block p,
.content-block-alt p,
.content-block-centered p,
.content-block-final p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.content-block h2,
.content-block-alt h2,
.content-block-centered h2,
.content-block-final h2 {
    font-size: 1.9rem;
    margin: 2.5rem 0 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.4;
}

.content-block h3,
.content-block-alt h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2a2a2a;
    font-weight: 600;
}

.content-block-alt {
    background-color: #f9f9f9;
    padding: 2.5rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
}

.content-block-centered {
    text-align: center;
}

/* Inline Images */
.inline-image-wrapper {
    margin: 2.5rem 0;
}

.inline-image {
    width: 100%;
    margin-bottom: 0.75rem;
}

.image-caption {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

.section-image {
    width: 100%;
    margin: 2rem 0;
}

/* Blockquotes and Testimonials */
blockquote.testimony-inline {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #1a5f7a;
    background-color: #f5f9fa;
    font-style: italic;
}

blockquote.testimony-inline p {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

blockquote.testimony-inline cite {
    font-size: 0.95rem;
    color: #555;
    font-style: normal;
}

/* Insight Box */
.insight-box {
    background-color: #fff8e1;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 2px;
    border: 1px solid #ffe082;
}

.insight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.insight-list {
    list-style: none;
    padding-left: 0;
}

.insight-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
}

/* Statistics Highlight */
.stat-highlight {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #e3f2fd;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.05rem;
    color: #2a2a2a;
    max-width: 500px;
    margin: 0 auto;
}

.reality-check {
    background-color: #fce4ec;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #d81b60;
    font-size: 1.05rem;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.benefits-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTAs */
.cta-inline,
.cta-section,
.cta-final {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #1a5f7a;
    color: #fff;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.3s ease;
    margin: 1rem 0;
    cursor: pointer;
}

.cta-inline:hover,
.cta-section:hover,
.cta-final:hover {
    background-color: #0d3d4f;
    color: #fff;
}

.cta-section {
    display: block;
    margin: 2rem auto;
    max-width: 400px;
}

.cta-final {
    font-size: 1.1rem;
    padding: 1.1rem 2.5rem;
}

.cta-block-centered {
    text-align: center;
    margin: 3rem 0;
}

/* Services Editorial Style */
.services-editorial {
    margin: 2.5rem 0;
}

.service-item,
.service-item-extended {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child,
.service-item-extended:last-child {
    border-bottom: none;
}

.service-item h3,
.service-item-extended h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item p,
.service-item-extended p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 1.5rem 0 1rem;
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 1.5rem 0;
    text-align: center;
}

.service-image {
    width: 100%;
    margin: 1.5rem 0;
}

.service-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.service-list li {
    margin-bottom: 0.5rem;
}

.service-duration {
    font-style: italic;
    color: #555;
    margin: 1rem 0;
}

.btn-select-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background-color: #1b5e20;
}

/* Testimonial Stories */
.testimonial-story {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f0f4f8;
    border-radius: 3px;
}

.testimonial-story p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}

/* Forms */
.form-section {
    margin: 4rem 0;
    padding: 2.5rem 2rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section p {
    text-align: center;
    margin-bottom: 2rem;
}

.editorial-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    color: #2a2a2a;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a5f7a;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #1a5f7a;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #0d3d4f;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0.5rem;
}

.btn-primary {
    background-color: #1a5f7a;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0d3d4f;
    color: #fff;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #2a2a2a;
}

.btn-secondary:hover {
    background-color: #ccc;
    color: #2a2a2a;
}

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

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

/* Page Header */
.page-header {
    margin-bottom: 3rem;
    text-align: center;
}

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

/* Contact Page */
.contact-info-editorial {
    margin: 2rem 0;
}

.contact-section {
    margin-bottom: 2.5rem;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a5f7a;
    font-weight: 600;
}

.contact-image {
    width: 100%;
    margin: 2rem 0;
}

.contact-note {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f5f9fa;
    border-left: 3px solid #1a5f7a;
}

.contact-note h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.map-placeholder {
    margin: 2rem 0;
    padding: 4rem 2rem;
    background-color: #e8f5e9;
    text-align: center;
    border-radius: 3px;
}

.map-text {
    font-size: 1.1rem;
    color: #2e7d32;
    font-weight: 600;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
    padding: 3rem 0;
}

.thanks-container {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-message {
    margin: 2rem 0;
}

.thanks-image {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
}

.service-confirmation {
    margin: 1.5rem 0;
}

.selected-service-highlight {
    font-size: 1.15rem;
    padding: 1rem;
    background-color: #e8f5e9;
    border-radius: 3px;
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 2rem auto;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.thanks-actions {
    margin-top: 2.5rem;
}

/* Legal Pages */
.legal-page .content-block {
    max-width: 800px;
}

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

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2a2a2a;
}

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer-editorial {
    background-color: #2a2a2a;
    color: #ddd;
    padding: 2.5rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-main {
    text-align: center;
}

.footer-main p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-nav a {
    color: #bbb;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

.footer-nav a:hover {
    color: #fff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #1a5f7a;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 0;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie.accept {
    background-color: #2e7d32;
    color: #fff;
}

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

.btn-cookie.reject {
    background-color: #d32f2f;
    color: #fff;
}

.btn-cookie.reject:hover {
    background-color: #b71c1c;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

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

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

    .content-block-alt {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        justify-content: center;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

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

@media (max-width: 480px) {
    .editorial-main {
        padding: 2rem 1rem;
    }

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

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

    .service-price-large {
        font-size: 1.5rem;
    }
}