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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0d3a6b;
}

/* Navigation - Minimal Style */
.nav-minimal {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e5e5e5;
    padding: 1.2rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a5490;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c2c2c;
    transition: color 0.2s ease;
}

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

/* Editorial Container - Article-like narrow layout */
.editorial-container {
    padding: 3rem 0 5rem;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.hero-narrow {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
}

.overline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 600;
}

.editorial-hero h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 400;
}

.hero-image {
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

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

/* Editorial Sections */
.editorial-section {
    margin-bottom: 4rem;
}

.editorial-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.editorial-section h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
}

.editorial-section p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

.editorial-section ul,
.editorial-section ol {
    margin: 1.5rem 0 1.5rem 1.5rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

.editorial-section li {
    margin-bottom: 0.7rem;
}

/* Drop Cap - Editorial Style */
.drop-cap::first-letter {
    font-size: 4rem;
    line-height: 0.85;
    float: left;
    margin: 0.1rem 0.15rem 0 0;
    font-weight: 700;
    color: #1a5490;
}

/* Background Variations */
.bg-light {
    background: #f8f9fa;
    padding: 3rem 0;
    margin-left: -100vw;
    margin-right: -100vw;
    padding-left: 100vw;
    padding-right: 100vw;
}

.bg-dark {
    background: #1a1a1a;
    padding: 3rem 0;
    margin-left: -100vw;
    margin-right: -100vw;
    padding-left: 100vw;
    padding-right: 100vw;
}

.text-white {
    color: #ffffff;
}

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

.inline-image img {
    border-radius: 4px;
}

.inline-image figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    text-align: center;
}

/* Insight Box */
.insight-box {
    background: #f0f5fa;
    border-left: 4px solid #1a5490;
    padding: 1.5rem;
    margin: 2rem 0;
}

.insight-box p {
    margin: 0;
}

/* Testimonials - Inline */
.testimonial-inline {
    padding: 3rem 0;
}

.testimonial-inline blockquote {
    border-left: 4px solid #1a5490;
    padding-left: 2rem;
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: #2c2c2c;
}

.testimonial-inline blockquote p {
    margin-bottom: 1rem;
}

.testimonial-inline footer {
    font-style: normal;
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-top: 1rem;
}

/* CTAs - Multiple Styles */
.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-link {
    font-size: 1.1rem;
    color: #1a5490;
    font-weight: 600;
    border-bottom: 2px solid #1a5490;
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.cta-link:hover {
    color: #0d3a6b;
    border-bottom-color: #0d3a6b;
}

.cta-button {
    display: inline-block;
    background: #1a5490;
    color: #ffffff;
    padding: 0.9rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #0d3a6b;
    color: #ffffff;
}

.inline-cta-light {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-link-light {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 2px;
}

.cta-link-light:hover {
    opacity: 0.8;
}

/* Services Section */
.services-reveal {
    margin: 4rem 0;
}

.service-card-editorial {
    background: #f8f9fa;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    border-left: 4px solid #1a5490;
}

.service-card-editorial h3 {
    margin-top: 0;
    font-size: 1.6rem;
    color: #1a1a1a;
}

.service-card-editorial .service-detail {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
}

.service-card-editorial .price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5490;
    margin: 1rem 0;
}

.select-service {
    background: #1a5490;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 1rem;
}

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

/* Form Section */
.form-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: #f8f9fa;
    margin-left: -100vw;
    margin-right: -100vw;
    padding-left: 100vw;
    padding-right: 100vw;
}

.editorial-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.cta-button-form {
    background: #1a5490;
    color: #ffffff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-button {
    display: block;
    background: #1a5490;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(26, 84, 144, 0.3);
    transition: all 0.2s ease;
}

.sticky-cta-button:hover {
    background: #0d3a6b;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(26, 84, 144, 0.4);
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

/* Services Detail Page */
.services-detail {
    margin: 3rem 0;
}

.service-detailed {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e5e5;
}

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

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5490;
    margin: 1rem 0 1.5rem;
}

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

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

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

.contact-detail {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-top: 0.5rem;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.faq-item p {
    margin: 0;
}

/* Results List */
.results-list {
    list-style: none;
    margin: 2rem 0;
}

.results-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

/* Legal Pages */
.legal-page {
    padding-bottom: 4rem;
}

.legal-date {
    font-size: 0.95rem;
    color: #6a6a6a;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
}

.thanks-details {
    background: #f0f5fa;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.service-confirmation h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps ol {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-brand .brand {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    color: #b0b0b0;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.cookie-accept {
    background: #1a5490;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #0d3a6b;
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-content {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

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

    .lead {
        font-size: 1.1rem;
    }

    .editorial-section h2 {
        font-size: 1.6rem;
    }

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

    .drop-cap::first-letter {
        font-size: 3rem;
    }

    .testimonial-inline blockquote {
        font-size: 1.05rem;
        padding-left: 1.5rem;
    }

    .service-card-editorial {
        padding: 1.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        gap: 2rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .editorial-hero h1 {
        font-size: 1.7rem;
    }

    .brand {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .price-large {
        font-size: 2rem;
    }

    .service-card-editorial .price {
        font-size: 1.7rem;
    }
}