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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #34495e;
    --color-accent: #e67e22;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #fff;
    --color-bg-alt: #f8f9fa;
    --color-border: #ddd;
    --max-width-content: 680px;
    --max-width-wide: 920px;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background: var(--color-accent);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #d35400;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid #fff;
}

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

.header-editorial {
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-disclosure {
    background: #fffbea;
    border-bottom: 1px solid #f3d673;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #8b6f00;
}

.nav-minimal {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 15px;
    transition: color 0.3s;
}

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

.editorial-main {
    background: var(--color-bg);
}

.story-article {
    margin: 0 auto;
}

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

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.story-intro,
.story-content {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 40px 20px;
}

.lead-paragraph {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--color-primary);
}

.story-content p {
    margin-bottom: 24px;
}

.story-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin: 60px 0 30px;
    color: var(--color-primary);
}

.story-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 40px 0 20px;
    color: var(--color-primary);
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f5f5f5;
}

.inline-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-caption {
    padding: 15px;
    font-size: 15px;
    color: var(--color-text-light);
    font-style: italic;
    text-align: center;
}

.editorial-quote {
    margin: 50px 0;
    padding: 30px 40px;
    border-left: 4px solid var(--color-accent);
    background: var(--color-bg-alt);
    font-size: 22px;
    font-style: italic;
    color: var(--color-primary);
}

.citation {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.citation:hover {
    color: #d35400;
}

.cta-inline {
    margin: 50px 0;
    padding: 30px;
    background: var(--color-bg-alt);
    border-radius: 8px;
    text-align: center;
}

.cta-inline p {
    margin-bottom: 20px;
}

.btn-text-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-text-link:hover {
    color: #d35400;
}

.services-editorial {
    background: var(--color-bg-alt);
    padding: 80px 20px;
    margin: 80px 0;
}

.service-cards-editorial {
    margin-top: 50px;
}

.service-card-edit {
    background: var(--color-bg);
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-image-wrap {
    width: 100%;
    background-color: #e0e0e0;
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-text {
    padding: 30px;
}

.service-text h3 {
    margin-top: 0;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent);
    margin: 20px 0;
}

.btn-select-service {
    padding: 14px 32px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: var(--color-secondary);
}

.form-section-editorial {
    padding: 80px 20px;
}

.editorial-form {
    max-width: 500px;
    margin: 50px auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #d35400;
}

.disclaimer-section {
    background: #f0f0f0;
    padding: 40px 20px;
}

.disclaimer-text {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    text-align: center;
}

.references-section {
    padding: 60px 20px;
}

.references-list {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
}

.references-list a {
    color: var(--color-accent);
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer-editorial {
    background: var(--color-primary);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.8;
}

.content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--color-primary);
}

.content-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--color-primary);
}

.content-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--color-primary);
}

.content-page p,
.content-page ul,
.content-page ol {
    margin-bottom: 20px;
}

.content-page ul,
.content-page ol {
    margin-left: 30px;
}

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

.contact-info {
    background: var(--color-bg-alt);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

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

.contact-info p {
    margin-bottom: 15px;
}

.thanks-message {
    text-align: center;
    padding: 100px 20px;
}

.thanks-message h1 {
    color: var(--color-accent);
    margin-bottom: 30px;
}

.thanks-message .checkmark {
    font-size: 80px;
    color: var(--color-accent);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .story-content h2 {
        font-size: 28px;
    }

    .lead-paragraph {
        font-size: 20px;
    }

    .editorial-quote {
        font-size: 18px;
        padding: 20px;
    }

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