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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #ddd;
    --white: #ffffff;
}

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

.nav-minimal {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.editorial-flow {
    max-width: 100%;
}

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

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

.editorial-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

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

.story-intro,
.story-section,
.highlighted-section,
.enrollment-form-section,
.testimonials-inline,
.urgency-section,
.faq-section {
    padding: 4rem 0;
}

.drop-cap::first-letter {
    font-size: 4rem;
    font-weight: bold;
    float: left;
    line-height: 0.8;
    margin: 0.1rem 0.2rem 0 0;
    color: var(--accent-color);
}

.narrow-column p {
    margin-bottom: 1.5rem;
}

.narrow-column h2 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem 0;
    color: var(--primary-color);
    line-height: 1.3;
}

.inline-cta {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.cta-link-subtle {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.cta-link-subtle:hover {
    opacity: 0.7;
}

.visual-break {
    position: relative;
    margin: 5rem 0;
    width: 100%;
}

.visual-break img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay-text {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    border-radius: 4px;
    max-width: 600px;
    text-align: center;
}

.overlay-text blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
}

.inline-image-small {
    margin: 2rem 0;
}

.inline-image-small img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.cta-inline-arrow {
    display: inline-block;
    margin: 1.5rem 0;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.3s ease;
}

.cta-inline-arrow:hover {
    transform: translateX(5px);
}

.highlighted-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.services-editorial {
    max-width: 720px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-editorial {
    background: var(--white);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-number {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.service-card-editorial h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card-editorial p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.duration {
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    font-family: 'Arial', sans-serif;
}

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

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

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

.form-field {
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.form-field input,
.form-field select {
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.btn-primary-large {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
    font-family: 'Arial', sans-serif;
}

.btn-primary-large:hover {
    background: #c0392b;
}

.testimonial-block {
    margin: 2.5rem 0;
    padding-left: 2rem;
    border-left: 3px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.testimonial-block cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.urgency-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 0;
}

.urgency-section h2 {
    color: var(--white);
}

.urgency-section p {
    color: rgba(255, 255, 255, 0.9);
}

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

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.15rem;
    font-weight: 700;
    transition: background 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
}

.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
}

.cookie-content a {
    color: var(--accent-color);
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--white);
}

.btn-reject {
    background: var(--border-color);
    color: var(--text-color);
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
}

.sticky-cta-button {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.sticky-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.5);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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

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

    .narrow-column h2 {
        font-size: 1.8rem;
    }

    body {
        font-size: 16px;
    }

    .overlay-text {
        bottom: 1rem;
        padding: 1.5rem;
    }

    .overlay-text blockquote {
        font-size: 1.2rem;
    }

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

    .service-card-editorial h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 1.5rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

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

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.thanks-content .btn-cta-large {
    margin-top: 2rem;
}

.contact-page {
    max-width: 720px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.contact-info {
    margin-top: 3rem;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

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

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

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

.about-page {
    max-width: 720px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

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

.legal-page {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

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

.legal-page h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}