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

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

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

a:hover {
    color: #0d2f4d;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    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: 15px;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn-accept {
    background: #1a4d7a;
    color: #fff;
}

.btn-accept:hover {
    background: #0d2f4d;
}

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

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

/* Navigation */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a4d7a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2c2c2c;
}

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

/* Editorial Content Structure */
.editorial-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.narrow-text {
    max-width: 680px;
    margin: 0 auto;
}

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto 40px;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 60px;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.hero-image {
    margin: 40px 0;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
}

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

.page-header h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Story Sections */
.story-section,
.insight-section,
.trust-section,
.reality-check,
.approach-section,
.commitment-section,
.values-section,
.team-intro,
.numbers-section,
.services-footer,
.contact-info,
.contact-method,
.contact-expectations,
.contact-urgent,
.contact-alternative,
.thanks-section {
    margin-bottom: 60px;
}

.story-section h2,
.insight-section h2,
.trust-section h2,
.reality-check h2,
.approach-section h2,
.commitment-section h2,
.values-section h2,
.team-intro h2,
.numbers-section h2,
.services-footer h2,
.contact-info h2,
.contact-method h2,
.contact-expectations h2,
.contact-urgent h2,
.contact-alternative h2,
.thanks-section h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-section p,
.insight-section p,
.trust-section p,
.reality-check p,
.approach-section p,
.commitment-section p,
.values-section p,
.team-intro p,
.numbers-section p,
.contact-info p,
.contact-method p,
.thanks-section p {
    margin-bottom: 20px;
}

/* Inline Figures */
.inline-figure {
    margin: 40px 0;
}

.inline-figure img {
    width: 100%;
    border-radius: 6px;
}

/* Lists */
.insight-list,
.transparency-list,
.results-list,
.expectations-list,
.urgent-steps,
.reading-list {
    margin: 28px 0;
    padding-left: 24px;
}

.insight-list li,
.transparency-list li,
.results-list li,
.expectations-list li,
.urgent-steps li,
.reading-list li {
    margin-bottom: 12px;
}

/* CTAs */
.inline-cta,
.inline-cta-final {
    margin: 36px 0;
    text-align: center;
}

.link-cta,
.link-cta-alt,
.link-cta-prominent {
    display: inline-block;
    padding: 14px 32px;
    background: #1a4d7a;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.link-cta:hover,
.link-cta-alt:hover,
.link-cta-prominent:hover {
    background: #0d2f4d;
    color: #fff;
    transform: translateY(-2px);
}

.link-cta-prominent {
    background: #d4af37;
    font-size: 18px;
    padding: 16px 40px;
}

.link-cta-prominent:hover {
    background: #b8941f;
}

/* Service Cards */
.services-preview {
    margin: 60px 0;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.services-preview > .narrow-text {
    text-align: center;
    margin-bottom: 48px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    flex: 1 1 300px;
    background: #f9f9f9;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #1a4d7a;
    margin-bottom: 20px;
}

.card-cta {
    display: inline-block;
    padding: 12px 24px;
    background: #1a4d7a;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.card-cta:hover {
    background: #0d2f4d;
    color: #fff;
}

/* Testimonials */
.testimonial {
    margin: 32px 0;
    padding: 28px;
    background: #f5f5f5;
    border-left: 4px solid #1a4d7a;
    font-style: italic;
    border-radius: 4px;
}

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

/* Form Section */
.form-section {
    margin: 80px 0 60px;
    padding: 60px 0;
    background: #f8f8f8;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

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

.form-section > .narrow-text {
    text-align: center;
    margin-bottom: 40px;
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a4d7a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-submit:hover {
    background: #0d2f4d;
    transform: translateY(-2px);
}

/* Final Trust */
.final-trust {
    margin: 60px 0;
    text-align: center;
}

.closing-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Services Detailed Page */
.services-detailed {
    margin-top: 40px;
}

.intro-services {
    font-size: 20px;
    margin-bottom: 48px;
    text-align: center;
}

.service-detail {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 2px solid #e5e5e5;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    font-weight: 700;
}

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: #1a4d7a;
    margin: 16px 0 24px;
}

.service-includes {
    margin: 24px 0;
    padding-left: 24px;
}

.service-includes li {
    margin-bottom: 10px;
}

.service-cta {
    margin-top: 32px;
}

.featured-service {
    background: #f9f7f0;
    padding: 48px;
    border-radius: 12px;
    border: 2px solid #d4af37;
    margin-left: -20px;
    margin-right: -20px;
}

.featured-note {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

/* Value Blocks */
.value-block {
    margin: 36px 0;
    padding: 24px 0;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* Contact Page */
.contact-block {
    margin: 36px 0;
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1a4d7a;
}

.contact-detail {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 12px;
}

.note-text {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-top: 12px;
}

.process-step {
    margin: 28px 0;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Thanks Page */
.thanks-content {
    max-width: 680px;
    margin: 0 auto;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.next-steps,
.what-now,
.urgent-note {
    margin: 40px 0;
    padding: 28px;
    background: #f5f5f5;
    border-radius: 8px;
}

.next-steps h2,
.what-now h2,
.urgent-note h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.steps-list li {
    margin-bottom: 12px;
}

.service-reference {
    margin: 32px 0;
    padding: 24px;
    background: #e8f4f8;
    border-radius: 8px;
}

.service-reference h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.thanks-cta {
    margin-top: 48px;
    text-align: center;
}

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

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

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

.legal-section h3 {
    font-size: 22px;
    margin: 28px 0 14px;
    font-weight: 700;
    color: #2c2c2c;
}

.legal-section h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    font-weight: 700;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 28px;
}

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

.legal-section p {
    margin-bottom: 18px;
}

.rights-block,
.cookie-detail {
    margin: 28px 0;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 6px;
}

.update-date {
    margin-top: 40px;
    font-size: 16px;
    color: #666;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 40px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d0d0d0;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-copy {
    font-size: 14px;
    color: #999;
}

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

    .hero-editorial h1,
    .page-header h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 18px;
    }

    .story-section h2,
    .insight-section h2,
    .services-preview h2,
    .form-section h2 {
        font-size: 26px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .price-tag {
        font-size: 24px;
    }

    .price-large {
        font-size: 32px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .editorial-form {
        padding: 28px 20px;
    }

    .featured-service {
        padding: 28px 20px;
        margin-left: 0;
        margin-right: 0;
    }

    .form-section {
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1,
    .page-header h1 {
        font-size: 28px;
    }

    .lead-text {
        font-size: 17px;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .editorial-content {
        padding: 20px 16px 60px;
    }
}
