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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fafafa;
}

/* Ad Disclosure */
.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    text-decoration: none;
    color: #546e7a;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Editorial Content Container */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px;
}

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

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

.intro-lead {
    font-size: 20px;
    color: #546e7a;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 32px;
}

/* Content Blocks */
.content-block {
    margin-bottom: 56px;
}

.content-block h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-block h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #2c3e50;
    margin: 32px 0 16px;
    font-weight: 600;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #37474f;
}

.content-block.highlight {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #1976d2;
}

/* Inline Image */
.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 32px 0;
}

/* Insight Box */
.insight-box {
    background: #e3f2fd;
    padding: 28px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 4px solid #1976d2;
}

.insight-box p {
    font-size: 18px;
    color: #0d47a1;
    margin: 0;
}

/* Financial List */
.financial-list {
    list-style: none;
    margin: 24px 0;
}

.financial-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 17px;
    line-height: 1.6;
}

.financial-list li:last-child {
    border-bottom: none;
}

.financial-list strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Inline CTA */
.inline-cta {
    display: inline-block;
    color: #1976d2;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 2px solid #1976d2;
    padding-bottom: 2px;
    margin: 16px 0;
    transition: all 0.2s;
}

.inline-cta:hover {
    color: #0d47a1;
    border-bottom-color: #0d47a1;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #1976d2;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    margin: 24px 0;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #0d47a1;
}

/* Testimonial Inline */
.testimonial-inline {
    background: #fff;
    border-left: 4px solid #ffc107;
    padding: 32px;
    margin: 48px 0;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 19px;
    font-style: italic;
    color: #37474f;
    margin-bottom: 12px;
}

.testimonial-inline cite {
    font-style: normal;
    color: #78909c;
    font-size: 16px;
}

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

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-preview > p {
    text-align: center;
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 48px;
}

/* Service Card Editorial */
.service-card-editorial {
    background: #ffffff;
    padding: 36px;
    margin-bottom: 32px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.service-card-editorial:hover {
    border-color: #1976d2;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-card-editorial.featured {
    border-color: #ffc107;
    background: #fffef7;
}

.service-card-editorial h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-card-editorial > p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 24px;
}

.service-details ul {
    list-style: none;
    margin: 20px 0;
}

.service-details li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    color: #37474f;
}

.service-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1976d2;
    margin: 24px 0 20px;
}

.select-service {
    width: 100%;
    background: #1976d2;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #0d47a1;
}

/* Citation */
.citation {
    color: #1976d2;
    text-decoration: none;
    font-size: 14px;
    vertical-align: super;
}

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

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    margin: 32px 0;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}

.checkbox-group a {
    color: #1976d2;
}

.submit-button {
    width: 100%;
    background: #1976d2;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #0d47a1;
}

/* Trust Section */
.trust-section {
    background: #e8f5e9;
    padding: 40px;
    border-radius: 8px;
    margin: 48px 0;
    text-align: center;
}

.trust-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.trust-section p {
    font-size: 18px;
    color: #2e7d32;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
}

.sticky-cta-button {
    background: #ffc107;
    color: #000000;
    border: none;
    padding: 16px 28px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.sticky-cta-button:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Footer */
.site-footer {
    background: #263238;
    color: #b0bec5;
    padding: 56px 24px 24px;
    margin-top: 80px;
}

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

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

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

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

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

.footer-section a {
    color: #b0bec5;
    text-decoration: none;
    transition: color 0.2s;
}

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

.references {
    list-style: none;
    counter-reset: ref-counter;
}

.references li {
    counter-increment: ref-counter;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.references li:before {
    content: "[" counter(ref-counter) "] ";
    color: #1976d2;
    font-weight: 600;
}

/* Disclaimer */
.disclaimer {
    max-width: 1100px;
    margin: 0 auto 32px;
    padding: 24px;
    background: #37474f;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #cfd8dc;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #37474f;
    text-align: center;
    font-size: 14px;
    color: #78909c;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
    padding: 24px;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #37474f;
    margin: 0;
}

.cookie-content a {
    color: #1976d2;
}

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

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

.cookie-accept {
    background: #4caf50;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #388e3c;
}

.cookie-reject {
    background: #e0e0e0;
    color: #37474f;
}

.cookie-reject:hover {
    background: #bdbdbd;
}

/* Simple Pages */
.simple-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px;
}

.simple-page h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.simple-page h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #2c3e50;
}

.simple-page h3 {
    font-size: 22px;
    margin: 32px 0 12px;
    color: #37474f;
}

.simple-page p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #37474f;
}

.simple-page ul,
.simple-page ol {
    margin: 16px 0 16px 24px;
    font-size: 17px;
    line-height: 1.7;
}

.simple-page li {
    margin-bottom: 10px;
}

.simple-page a {
    color: #1976d2;
}

/* Contact Page Specific */
.contact-info {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin: 12px 0;
    font-size: 17px;
}

.contact-info strong {
    color: #1a1a1a;
}

/* Services Page */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 48px 0;
}

/* Thanks Page */
.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 24px;
    text-align: center;
}

.thanks-box {
    background: #e8f5e9;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.thanks-box h1 {
    font-size: 32px;
    color: #2e7d32;
    margin-bottom: 16px;
}

.thanks-box p {
    font-size: 18px;
    color: #37474f;
    margin-bottom: 16px;
}

.thanks-box .service-info {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.thanks-box .service-info strong {
    color: #1a1a1a;
}

.back-button {
    display: inline-block;
    background: #1976d2;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 24px;
    transition: background 0.3s;
}

.back-button:hover {
    background: #0d47a1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .editorial-content {
        padding: 32px 20px;
    }

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

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

    .content-block h2 {
        font-size: 26px;
    }

    .content-block p {
        font-size: 17px;
    }

    .content-block.highlight {
        padding: 24px;
    }

    .service-card-editorial {
        padding: 24px;
    }

    .contact-form {
        padding: 24px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }

    .sticky-cta-button {
        width: 100%;
        font-size: 16px;
        padding: 14px 20px;
    }
}