* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4a5568;
    --accent-color: #2d3748;
    --light-bg: #f7fafc;
    --border-color: #e2e8f0;
    --link-color: #2b6cb0;
    --link-hover: #1a4d7a;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--primary-color);
    background-color: #ffffff;
    font-size: 18px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #38a169;
}

.btn-cookie.reject {
    background-color: #718096;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #4a5568;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #ffeaa7;
}

.header-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.editorial-main {
    min-height: 70vh;
}

.story-flow {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.hero-editorial {
    margin-bottom: 64px;
}

.headline-primary {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.byline {
    font-size: 20px;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 40px;
}

.hero-image {
    margin-top: 40px;
    width: 100%;
}

.hero-image img,
.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.inline-image {
    margin: 48px 0;
    width: 100%;
}

.text-block {
    margin-bottom: 48px;
}

.text-block.centered {
    text-align: left;
}

.text-block p {
    margin-bottom: 24px;
}

.text-block h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 24px;
    margin-top: 48px;
    color: var(--primary-color);
}

.text-block h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--primary-color);
}

.text-block h4 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--primary-color);
}

.text-block ul,
.text-block ol {
    margin-left: 32px;
    margin-bottom: 24px;
}

.text-block li {
    margin-bottom: 12px;
}

.dropcap::first-letter {
    font-size: 64px;
    line-height: 1;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
    font-weight: 700;
    color: var(--accent-color);
}

.text-cta {
    display: inline-block;
    color: var(--link-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-top: 16px;
    transition: color 0.3s ease;
    border-bottom: 2px solid var(--link-color);
    padding-bottom: 2px;
}

.text-cta:hover {
    color: var(--link-hover);
    border-bottom-color: var(--link-hover);
}

.editorial-quote {
    border-left: 4px solid var(--accent-color);
    padding-left: 32px;
    margin: 48px 0;
    font-style: italic;
    font-size: 20px;
    color: var(--secondary-color);
}

.editorial-quote p {
    margin-bottom: 16px;
}

.editorial-quote cite {
    display: block;
    font-style: normal;
    font-size: 16px;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.editorial-form {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    margin-top: 32px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--link-color);
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-color);
}

.service-item {
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-of-type {
    border-bottom: none;
}

.service-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: var(--primary-color);
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 18px;
    color: var(--secondary-color);
}

.legal-content ul {
    margin-left: 32px;
    margin-bottom: 24px;
}

.legal-content li {
    margin-bottom: 12px;
}

.legal-content strong {
    font-weight: 600;
}

.legal-content a {
    color: var(--link-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--link-hover);
}

.page-hero {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.thanks-section {
    text-align: center;
    padding: 60px 0;
}

.thanks-content {
    margin: 40px 0;
}

.thanks-content p {
    margin-bottom: 20px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-top: 40px;
}

.footer-editorial {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.disclaimer strong {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (max-width: 768px) {
    .headline-primary {
        font-size: 32px;
    }

    .byline {
        font-size: 18px;
    }

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

    .text-block h3 {
        font-size: 22px;
    }

    .nav-links {
        gap: 20px;
    }

    .story-flow {
        padding: 24px 16px 60px;
    }

    .editorial-form {
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .service-meta {
        align-items: stretch;
    }

    .service-cta {
        text-align: center;
    }
}

@media (min-width: 769px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .service-meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}