/* CSS 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: #2a2a2a;
    background: #ffffff;
}

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

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

a:hover {
    color: #0d3b4f;
}

/* Editorial Layout Structure */
.editorial-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

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

.brand {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a2a2a;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #555;
    font-weight: 400;
}

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

/* Story Flow - Main Content Container */
.story-flow {
    flex: 1;
}

/* Hero Editorial */
.hero-editorial {
    max-width: 720px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
}

.hero-content-narrow {
    margin-bottom: 2.5rem;
}

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    font-weight: 400;
}

.hero-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Page Header Editorial */
.page-header-editorial {
    max-width: 720px;
    margin: 3rem auto 2rem;
    padding: 0 2rem;
}

.page-header-editorial h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

/* Content Blocks */
.content-block {
    padding: 3rem 0;
}

.content-block.bg-light {
    background: #f8f9fa;
}

.content-block.bg-dark {
    background: #1a1a1a;
    color: #e8e8e8;
}

.content-block.bg-dark h2,
.content-block.bg-dark h3 {
    color: #ffffff;
}

.content-block.bg-dark p {
    color: #d4d4d4;
}

.narrow-text {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.narrow-text.centered {
    text-align: center;
}

.narrow-text h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #1a1a1a;
}

.narrow-text h2:first-child {
    margin-top: 0;
}

.narrow-text h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2a2a2a;
}

.narrow-text p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

.narrow-text ul,
.narrow-text ol {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.narrow-text li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

/* Visual Break */
.visual-break {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.visual-break img {
    border-radius: 8px;
    width: 100%;
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Inline Quote */
.inline-quote {
    display: block;
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background: #f4f6f8;
    border-left: 4px solid #1a5f7a;
    font-size: 1.15rem;
    line-height: 1.6;
    font-style: italic;
    color: #333;
}

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

/* CTA Inline */
.cta-inline {
    display: inline-block;
    margin: 1.5rem 0;
    padding: 0.85rem 1.8rem;
    background: #1a5f7a;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.cta-inline:hover {
    background: #0d3b4f;
    color: #ffffff;
}

/* Service Cards Inline */
.services-preview-cards {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-inline {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-card-inline h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card-inline p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: #444;
    flex: 1;
}

.price-tag {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.btn-text {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 2px solid #1a5f7a;
    color: #1a5f7a;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-text:hover {
    background: #1a5f7a;
    color: #ffffff;
}

/* Service Detail Cards */
.service-detail-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5f7a;
}

.service-body p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.3rem;
    color: #444;
}

.service-body ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.service-body li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: #1a5f7a;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0d3b4f;
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: transparent;
    border: 2px solid #1a5f7a;
    color: #1a5f7a;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.cta-section {
    margin-top: 2rem;
    text-align: center;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

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

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.editorial-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

/* Contact Info */
.contact-info-block {
    margin-bottom: 2.5rem;
}

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

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

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

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

/* Thanks Page */
.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-list {
    list-style: none;
    margin: 1rem 0 0 0;
}

.thanks-list li {
    margin-bottom: 0.7rem;
}

.thanks-cta {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #e8f4f8;
    border-radius: 8px;
}

.thanks-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Principle List */
.principle-list {
    list-style: none;
    margin-left: 0;
}

.principle-list li {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #1a5f7a;
}

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

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

/* Final Section */
.final-section,
.final-cta {
    padding: 4rem 0;
}

/* Footer */
.footer-minimal {
    background: #1a1a1a;
    color: #d4d4d4;
    padding: 2.5rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

.footer-nav a {
    color: #d4d4d4;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-text {
    font-size: 0.9rem;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    padding: 1.5rem;
    z-index: 200;
    display: none;
    border-top: 1px solid #333;
}

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

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

.cookie-content p {
    color: #e8e8e8;
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #1a5f7a;
    color: #ffffff;
}

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

.btn-reject {
    background: transparent;
    border: 2px solid #666;
    color: #e8e8e8;
}

.btn-reject:hover {
    border-color: #999;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;
    }

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

    .hero-editorial {
        margin: 2rem auto 2rem;
        padding: 0 1.5rem;
    }

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

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

    .page-header-editorial {
        margin: 2rem auto 1.5rem;
        padding: 0 1.5rem;
    }

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

    .narrow-text {
        padding: 0 1.5rem;
    }

    .narrow-text h2 {
        font-size: 1.6rem;
    }

    .narrow-text h3 {
        font-size: 1.2rem;
    }

    .content-block {
        padding: 2rem 0;
    }

    .visual-break {
        padding: 0 1.5rem;
        margin: 2rem auto;
    }

    .services-preview-cards {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

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

    .service-detail-card {
        padding: 0 1.5rem;
    }

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

    .editorial-form {
        padding: 0 1.5rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

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

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

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

    .narrow-text h2 {
        font-size: 1.4rem;
    }

    .service-card-inline h3 {
        font-size: 1.3rem;
    }

    .price-tag,
    .price-large {
        font-size: 1.5rem;
    }
}
