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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --max-width: 720px;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-color);
    background: #fff;
}

.editorial-nav {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.editorial-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-header {
    margin-bottom: 2.5rem;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.author-info {
    display: flex;
    gap: 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #777;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.hero-image {
    margin: 3rem 0;
    width: 100%;
}

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

.inline-image {
    margin: 2.5rem 0;
}

.intro-section,
.content-section {
    margin-bottom: 3rem;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-section p {
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
}

.content-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: var(--primary-color);
}

.content-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
}

.content-section em {
    font-style: italic;
    color: var(--secondary-color);
}

.quote-block {
    margin: 2.5rem 0;
    padding: 2rem 2rem 2rem 3rem;
    border-left: 4px solid var(--secondary-color);
    background: var(--light-bg);
}

.quote-block blockquote {
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.quote-block cite {
    font-size: 1rem;
    font-style: normal;
    color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.insight-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 1.8rem;
    margin: 2rem 0;
}

.insight-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #e65100;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.insight-box p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.stats-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.reading-method {
    list-style-position: outside;
    margin-left: 1.5rem;
}

.reading-method li {
    margin-bottom: 1.2rem;
    padding-left: 0.5rem;
}

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

.cta-button-text {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.15rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: color 0.3s;
}

.cta-button-text:hover {
    color: var(--secondary-color);
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #c0392b;
}

.cta-button-large {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button-large:hover {
    background: #c0392b;
}

.cta-box-centered {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2.5rem;
    margin: 4rem 0;
    text-align: center;
    border-radius: 8px;
}

.cta-box-centered h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cta-box-centered p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cta-box-centered .cta-button-large {
    background: #fff;
    color: #667eea;
}

.cta-box-centered .cta-button-large:hover {
    background: #f0f0f0;
}

.services-preview-section {
    margin: 4rem 0;
}

.section-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: var(--secondary-color);
    background: #fff5f5;
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-card li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.select-service {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1a252f;
}

.form-section {
    margin: 4rem 0;
    background: var(--light-bg);
    padding: 3rem 2.5rem;
    border-radius: 8px;
}

.form-section h2 {
    margin-bottom: 2rem;
    text-align: center;
}

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

.selected-service-display {
    background: #e8f5e9;
    border-left: 4px solid var(--success-color);
    padding: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.selected-service-display p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
}

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

.site-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid var(--border-color);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.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: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: var(--success-color);
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #229954;
}

.cookie-btn.reject {
    background: #95a5a6;
    color: #fff;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .subtitle {
        font-size: 1.1rem;
    }

    .author-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

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

    .quote-block {
        padding: 1.5rem 1.5rem 1.5rem 2rem;
    }

    .quote-block blockquote {
        font-size: 1.2rem;
    }

    .stats-box {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-box-centered {
        padding: 2rem 1.5rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

.simple-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.simple-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.simple-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.simple-page p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.simple-page ul,
.simple-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.simple-page li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.contact-info strong {
    color: var(--primary-color);
}

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.thanks-container .cta-button {
    margin-top: 2rem;
}