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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #e67e52;
    --success-color: #5a9f7e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.96);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background-color: #4a8a6a;
}

.btn-cookie.reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

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

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.5px;
}

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

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

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

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

.hero-editorial {
    padding: 80px 0 60px;
    background-color: var(--bg-light);
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 0;
}

.hero-image-inline {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 0 30px;
}

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

.page-header-editorial {
    padding: 60px 0 40px;
    background-color: var(--bg-light);
}

.page-header-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.page-lead {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.6;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px;
}

.story-section {
    padding: 60px 0;
}

.opening-graf {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.story-section h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 50px 0 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.story-section h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 36px 0 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.story-section p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.7;
}

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

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

.inline-figure figcaption {
    margin-top: 12px;
    font-size: 15px;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.image-pair {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.image-pair figure {
    flex: 1;
}

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

.pull-quote {
    font-size: 26px;
    line-height: 1.5;
    margin: 50px 0;
    padding: 30px 40px;
    border-left: 4px solid var(--primary-color);
    background-color: var(--bg-light);
    font-style: italic;
    color: var(--text-dark);
}

.pull-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-medium);
}

.inline-cta-subtle {
    margin: 36px 0;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: var(--accent-color);
}

.service-embed {
    margin: 50px 0;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.service-card-editorial {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.service-card-editorial:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-card-editorial h3 {
    font-size: 28px;
    margin: 0 0 16px 0;
    color: var(--text-dark);
}

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

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #234a5f;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-service {
    margin-top: 20px;
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

.cta-block-editorial {
    margin: 60px 0;
    padding: 50px;
    background-color: var(--bg-light);
    border-radius: 4px;
    text-align: center;
}

.cta-block-editorial h3 {
    font-size: 28px;
    margin: 0 0 16px 0;
    color: var(--text-dark);
}

.cta-block-editorial p {
    font-size: 18px;
    margin-bottom: 28px;
}

.cta-block-editorial .btn-secondary {
    margin-left: 12px;
}

.editorial-list {
    margin: 24px 0 24px 40px;
    font-size: 18px;
    line-height: 1.7;
}

.editorial-list li {
    margin-bottom: 12px;
}

.form-section-editorial {
    background-color: var(--bg-light);
    padding: 60px 0;
    margin-top: 60px;
}

.form-section-editorial h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
}

.form-section-editorial > .content-narrow > p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-medium);
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

.btn-submit-large:hover {
    background-color: #234a5f;
}

.service-detailed {
    margin: 50px 0;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-header {
    margin-bottom: 30px;
}

.service-header h3 {
    margin: 0 0 12px 0;
}

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

.service-image {
    margin: 30px 0;
}

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

.contact-info-block {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: var(--text-dark);
}

.contact-item p {
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-detail {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

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

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

.thanks-section {
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
}

.thanks-info {
    text-align: left;
    margin-top: 50px;
}

.thanks-info h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.thanks-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 30px 0;
}

.service-confirmation {
    margin: 30px 0;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-size: 18px;
    color: var(--text-dark);
}

.thanks-cta {
    margin-top: 50px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 16px;
}

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

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 40px;
    font-size: 18px;
    line-height: 1.7;
}

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

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

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

.footer-editorial {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

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

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

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

.footer-column a:hover {
    color: white;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-editorial {
        padding: 50px 0 40px;
    }

    .hero-content-narrow {
        padding: 0 20px;
    }

    .hero-editorial h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 19px;
    }

    .hero-image-inline {
        padding: 0 20px;
    }

    .page-header-editorial {
        padding: 40px 0 30px;
    }

    .page-header-editorial h1 {
        font-size: 32px;
    }

    .content-narrow {
        padding: 0 20px;
    }

    .story-section {
        padding: 40px 0;
    }

    .opening-graf {
        font-size: 20px;
    }

    .story-section h2 {
        font-size: 26px;
        margin: 40px 0 20px;
    }

    .story-section h3 {
        font-size: 22px;
    }

    .pull-quote {
        font-size: 22px;
        padding: 24px 20px;
        margin: 40px 0;
    }

    .image-pair {
        flex-direction: column;
    }

    .service-card-editorial h3 {
        font-size: 24px;
    }

    .service-price {
        font-size: 20px;
    }

    .cta-block-editorial {
        padding: 30px 20px;
    }

    .cta-block-editorial h3 {
        font-size: 24px;
    }

    .cta-block-editorial .btn-secondary {
        margin-left: 0;
        margin-top: 12px;
        display: block;
    }

    .form-section-editorial h2 {
        font-size: 28px;
    }

    .editorial-form {
        padding: 30px 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

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

    .service-header h3 {
        font-size: 26px;
    }

    .service-price-large {
        font-size: 20px;
    }

    .legal-content h2 {
        font-size: 24px;
    }

    .legal-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 28px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .page-header-editorial h1 {
        font-size: 26px;
    }

    .opening-graf {
        font-size: 18px;
    }

    .story-section h2 {
        font-size: 24px;
    }

    .pull-quote {
        font-size: 19px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 15px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }
}
