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

:root {
    --color-primary: #c73e1d;
    --color-secondary: #1a1a2e;
    --color-accent: #f39c12;
    --color-text: #2c2c2c;
    --color-text-light: #6b6b6b;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f7f7;
    --color-border: #e0e0e0;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-serif: 'Georgia', 'Times New Roman', serif;
}

body {
    font-family: var(--font-serif);
    color: var(--color-text);
    line-height: 1.8;
    background: var(--color-bg);
    font-size: 18px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.97);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    border-top: 3px solid var(--color-primary);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #a03218;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

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

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

.logo {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-secondary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.article-hero {
    padding: 80px 30px 60px;
    max-width: 100%;
}

.hero-text-narrow {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.hero-text-narrow h1 {
    font-family: var(--font-serif);
    font-size: 52px;
    line-height: 1.2;
    color: var(--color-secondary);
    margin-bottom: 24px;
    font-weight: 700;
}

.lead-text {
    font-size: 24px;
    line-height: 1.5;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.hero-image-inline {
    max-width: 720px;
    width: 100%;
    margin: 40px auto 0;
    display: block;
    border-radius: 8px;
}

.text-section {
    padding: 60px 30px;
}

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

.text-section p {
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 1.8;
}

.text-section h2 {
    font-family: var(--font-serif);
    font-size: 38px;
    line-height: 1.3;
    color: var(--color-secondary);
    margin: 60px 0 28px;
    font-weight: 700;
}

.text-section h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 1.4;
    color: var(--color-secondary);
    margin: 40px 0 20px;
    font-weight: 600;
}

.text-section h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 1.4;
    color: var(--color-secondary);
    margin: 30px 0 16px;
    font-weight: 600;
}

.inline-quote {
    border-left: 4px solid var(--color-primary);
    padding: 24px 32px;
    margin: 40px 0;
    background: var(--color-bg-alt);
    font-style: italic;
    font-size: 22px;
    color: var(--color-text);
}

.image-break {
    padding: 60px 0;
    text-align: center;
}

.image-break img {
    max-width: 1000px;
    width: 100%;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.image-caption {
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--color-text-light);
    margin-top: 16px;
    font-style: italic;
}

.inline-image {
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
    margin: 40px 0;
}

.cta-inline {
    margin: 40px 0;
}

.btn-text-link {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-text-link:hover {
    color: var(--color-secondary);
}

.case-study-block {
    padding: 60px 30px;
    background: var(--color-bg-alt);
}

.case-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    border-left: 6px solid var(--color-accent);
}

.case-card h4 {
    font-family: var(--font-primary);
    font-size: 22px;
    margin: 0 0 16px 0;
    color: var(--color-secondary);
}

.case-card p {
    margin-bottom: 20px;
}

.case-stat {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 10px;
}

.stats-section {
    padding: 80px 30px;
    background: var(--color-secondary);
    color: white;
}

.stat-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 64px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.stat-item p {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.services-list-editorial {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item-editorial {
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
}

.service-item-editorial:last-child {
    border-bottom: none;
}

.service-item-editorial h3,
.service-item-editorial h4 {
    font-family: var(--font-serif);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.service-item-editorial p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.service-includes li {
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.6;
    padding: 8px 0 8px 28px;
    position: relative;
}

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

.price-editorial {
    margin: 30px 0 20px;
}

.price-value {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
}

.btn-service-select {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial-inline {
    background: var(--color-bg-alt);
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 22px;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 16px;
}

.testimonial-author {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-text-light);
    margin: 0;
}

.urgency-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #a03218 100%);
}

.urgency-box {
    text-align: center;
    color: white;
}

.urgency-box h3 {
    font-family: var(--font-serif);
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.urgency-box p {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.btn-primary {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    padding: 16px 40px;
    background: white;
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    background: transparent;
    color: var(--color-primary);
    text-decoration: none;
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 80px 30px;
    background: var(--color-bg-alt);
}

.form-section h2 {
    font-family: var(--font-serif);
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.form-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--color-text-light);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-primary);
    font-size: 16px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: white;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    padding: 16px 48px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-thought {
    font-size: 24px;
    font-style: italic;
    text-align: center;
    color: var(--color-text);
    margin: 60px 0 0 0;
    line-height: 1.6;
}

.footer {
    background: var(--color-secondary);
    color: white;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

.footer-column p {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-family: var(--font-primary);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 28px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(199, 62, 29, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--color-secondary);
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.5);
}

.contact-info {
    margin: 40px 0;
}

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

.contact-item h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.contact-item p {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.contact-item a {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

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

.contact-note p {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.thanks-content {
    text-align: center;
    padding: 40px 0;
}

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

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

.highlight-service {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--color-text);
    margin: 0;
}

.highlight-service strong {
    color: var(--color-primary);
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 40px auto;
    padding-left: 30px;
}

.next-steps li {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.legal-content {
    font-family: var(--font-primary);
}

.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

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

    .text-section h2 {
        font-size: 30px;
    }

    .text-section h3 {
        font-size: 24px;
    }

    .text-section p {
        font-size: 18px;
    }

    .inline-quote {
        font-size: 19px;
        padding: 20px 24px;
    }

    .stat-number {
        font-size: 48px;
    }

    .service-item-editorial h3,
    .service-item-editorial h4 {
        font-size: 26px;
    }

    .price-value {
        font-size: 36px;
    }

    .urgency-box h3 {
        font-size: 28px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .btn-sticky {
        display: block;
        text-align: center;
        width: 100%;
    }

    .footer-content {
        gap: 30px;
    }

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