/* 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: #fafafa;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.75rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #e0e0e0;
}

/* Navigation */
.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Editorial Layout */
.editorial-layout {
    background-color: #fff;
}

/* Hero Editorial */
.hero-editorial {
    padding: 80px 20px 60px;
    background-color: #fff;
}

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

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin-bottom: 30px;
}

.hero-image {
    max-width: 800px;
    margin: 50px auto 0;
    overflow: hidden;
}

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

/* Page Header */
.page-header {
    padding: 60px 20px 40px;
    background-color: #fff;
}

/* Content Narrow */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.content-narrow p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.75;
}

.content-narrow h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin: 50px 0 25px;
    letter-spacing: -0.5px;
}

.content-narrow h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    color: #2c2c2c;
    margin: 35px 0 15px;
}

.content-narrow ul {
    margin: 25px 0;
    padding-left: 30px;
}

.content-narrow li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Inline Images */
.inline-image {
    margin: 45px 0;
    overflow: hidden;
}

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

/* Blockquote / Testimonials */
blockquote.testimonial-inline {
    margin: 45px 0;
    padding: 30px 35px;
    background-color: #f9f9f9;
    border-left: 4px solid #333;
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: #333;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
}

/* Insight Boxes */
.insight-box {
    margin: 35px 0;
    padding: 30px;
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
}

.insight-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.insight-box p {
    margin-bottom: 0;
}

/* CTA Inline */
.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    padding: 15px 35px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.cta-link:hover {
    background-color: #333;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 3px;
    transition: background-color 0.2s;
    margin-top: 20px;
}

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

/* Trust Elements */
.trust-elements {
    margin: 50px 0;
    padding: 40px 30px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item h3 {
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    color: #1a1a1a;
}

.trust-item p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

/* Services Preview */
.services-preview {
    margin: 60px 0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.service-card {
    padding: 30px;
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
}

.service-card h3 {
    margin: 0 0 12px 0;
    font-size: 1.4rem;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 0 15px 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Service Detail */
.service-detail {
    margin: 50px 0;
    padding: 35px;
    background-color: #fafafa;
    border-left: 3px solid #333;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.service-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-detail p {
    font-size: 1.05rem;
}

.service-detail ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-detail li {
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Form Section */
.form-section {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.form-section h2 {
    margin-top: 0;
    text-align: center;
}

.form-section > p {
    text-align: center;
    margin-bottom: 35px;
    color: #555;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 3px;
    transition: border-color 0.2s;
}

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

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

/* Disclaimer */
.disclaimer-section {
    margin: 60px 0 0;
    padding: 30px;
    background-color: #f9f9f9;
    border: 1px solid #e8e8e8;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Contact Info */
.contact-info {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 45px;
}

.contact-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    color: #1a1a1a;
}

.contact-item p {
    margin: 0 0 8px 0;
    font-size: 1.05rem;
}

.no-link-email {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    font-weight: 500;
}

.small-text {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* FAQ */
.faq-item {
    margin: 35px 0;
}

.faq-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
}

.faq-item p {
    margin: 0;
}

/* Thanks Page */
.thanks-page {
    padding-top: 60px;
}

.thanks-content h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.thanks-content > .lead-text {
    text-align: center;
    margin-bottom: 50px;
}

.thanks-message h2 {
    font-size: 1.8rem;
    margin: 45px 0 25px;
}

.next-steps {
    margin: 35px 0;
}

.step {
    margin-bottom: 35px;
    padding: 25px;
    background-color: #fafafa;
    border-left: 3px solid #333;
}

.step h3 {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
}

.step p {
    margin: 0;
}

.thanks-cta {
    margin: 50px 0;
    padding: 35px;
    background-color: #f5f5f5;
    text-align: center;
}

.thanks-cta p {
    margin-bottom: 25px;
}

.thanks-cta .cta-button {
    margin-right: 15px;
}

.signature {
    margin-top: 50px;
    font-style: italic;
    color: #555;
}

/* Legal Content */
.legal-content h2 {
    font-size: 1.7rem;
    margin: 45px 0 20px;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 20px;
    z-index: 1000;
    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: 25px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-accept {
    background-color: #fff;
    color: #1a1a1a;
}

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 32px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
    z-index: 90;
}

.sticky-cta:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 2.2rem;
    }

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

    .content-narrow h2 {
        font-size: 1.7rem;
    }

    .content-narrow p,
    .content-narrow li {
        font-size: 1.05rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-links {
        gap: 20px;
    }

    .trust-elements {
        padding: 30px 20px;
    }

    .form-section {
        padding: 35px 25px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
    }
}