/* 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: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

/* Navigation - Minimal Style */
.nav-minimal {
    width: 100%;
    padding: 1.5rem 1rem;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

/* Editorial Content Container */
.editorial-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Hero Section - Narrow Text */
.article-hero {
    padding: 4rem 1.5rem 3rem;
    background: #fafafa;
}

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

.article-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.hero-image-inline {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 3rem auto 0;
    border-radius: 4px;
}

/* Story Section - Core Editorial Style */
.story-section {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

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

.story-section h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.story-section h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2.5rem 0 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.story-section h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.story-list {
    margin: 1.5rem 0 1.5rem 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-list li {
    margin-bottom: 0.8rem;
    color: #333;
}

/* Inline Quote */
.inline-quote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #1a1a1a;
    background: #f8f9fa;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    color: #2c3e50;
}

.inline-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

/* Full Width Image */
.full-width-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 3rem auto;
    border-radius: 4px;
}

/* Section Image */
.section-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

/* Visual Break */
.visual-break {
    padding: 3rem 1.5rem;
    background: #fafafa;
}

/* Inline CTA */
.inline-cta {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f0f4f8;
    border-radius: 4px;
}

.inline-cta p {
    font-size: 1.1rem;
    margin: 0;
}

.text-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
    transition: all 0.2s;
}

.text-link:hover {
    color: #1e40af;
    border-bottom-color: #1e40af;
}

/* Insight Section */
.insight-section {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.insight-section h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.insight-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 4rem 1.5rem;
    background: #fafafa;
}

.benefits-reveal h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* CTA Section Inline */
.cta-section-inline {
    margin: 3rem 0;
    padding: 2.5rem 1.5rem;
    background: #1a1a1a;
    text-align: center;
}

.cta-section-inline h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.cta-section-inline p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

/* Testimonial Section */
.testimonial-section {
    padding: 4rem 1.5rem;
    background: #2c3e50;
}

.testimonial-large {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    color: #ffffff;
    padding: 0;
    border: none;
}

.testimonial-large cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    color: #b0b0b0;
}

/* Form Section */
.form-section {
    padding: 4rem 1.5rem;
    background: #f0f4f8;
}

.editorial-form {
    margin-top: 2.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
}

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

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Final Section */
.final-section {
    padding: 4rem 1.5rem 5rem;
    background: #ffffff;
    text-align: center;
}

.closing-thought {
    max-width: 680px;
    margin: 0 auto 2rem;
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: #555;
}

/* Services Editorial */
.services-editorial {
    padding: 3rem 1.5rem;
    background: #ffffff;
}

.service-block {
    max-width: 680px;
    margin: 0 auto 4rem;
}

.service-block h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.2rem;
}

.service-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
}

.service-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 3rem auto 4rem;
    border-radius: 4px;
}

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

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

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

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.95rem;
    font-style: italic;
    color: #777;
    margin-top: 0.5rem;
}

/* Legal Pages */
.legal-page h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-date {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.legal-list {
    margin: 1rem 0 1.5rem 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-list li {
    margin-bottom: 0.8rem;
    color: #333;
}

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

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 0.9rem;
    color: #888;
}

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

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner.hidden {
    display: none;
}

.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 {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cookie:hover {
    background: #1e40af;
}

.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: #ffffff;
    border: 1px solid #666;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-alt:hover {
    border-color: #ffffff;
}

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

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

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

    .story-section h3 {
        font-size: 1.3rem;
    }

    .story-section p,
    .insight-section p {
        font-size: 1rem;
    }

    .inline-quote {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-alt {
        flex: 1;
    }

    .footer-links {
        gap: 1rem;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .article-hero {
        padding: 2.5rem 1rem 2rem;
    }

    .story-section,
    .insight-section,
    .benefits-reveal,
    .form-section {
        padding: 2.5rem 1rem;
    }

    .article-hero h1 {
        font-size: 1.75rem;
    }

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

    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }
}
