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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #e85d35;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-highlight: #fef8f5;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

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

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

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

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

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

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

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

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

.editorial-hero {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.editorial-hero-small {
    padding: 3rem 2rem 2rem;
    background: var(--bg-light);
}

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto 3rem;
}

.hero-text-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
}

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

.editorial-section {
    padding: 4rem 2rem;
}

.editorial-section.bg-highlight {
    background: var(--bg-highlight);
}

.text-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.text-narrow h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
}

.text-narrow h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

.inline-image {
    max-width: 680px;
    margin: 3rem auto;
}

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

.services-story-list {
    margin-top: 2.5rem;
}

.service-story-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service-story-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-story-item p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.price-tag {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.editorial-cta-inline {
    padding: 3rem 2rem;
}

.cta-box-story {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    text-align: center;
}

.cta-box-story.alt {
    background: var(--secondary-color);
}

.cta-box-story h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.cta-box-story p {
    margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: #d14d25;
}

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

.btn-secondary:hover {
    background: var(--bg-light);
}

.cta-box-story .btn-primary,
.cta-box-story .btn-secondary {
    margin-top: 0.5rem;
}

.testimonial-story {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--white);
    border-left: 4px solid var(--primary-color);
}

.testimonial-story p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

.editorial-form-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--white);
    color: var(--text-dark);
}

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

.btn-submit {
    margin-top: 1rem;
    width: 100%;
}

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

.final-message {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.footer-editorial {
    padding: 3rem 2rem 2rem;
    background: var(--text-dark);
    color: var(--white);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    opacity: 1;
}

.footer-content p {
    font-size: 0.875rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.legal-page {
    background: var(--white);
}

.legal-page .text-narrow {
    max-width: 800px;
}

.legal-intro {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

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

.legal-section h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-section p,
.legal-section ul,
.legal-section ol {
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info-block {
    margin-top: 2rem;
}

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

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

.contact-item p {
    margin-bottom: 0.5rem;
}

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

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

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

.service-detail-block {
    margin-bottom: 3rem;
}

.service-detail-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.service-detail-block ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.service-detail-block li {
    margin-bottom: 0.75rem;
}

.service-detail-block .btn-primary {
    margin-top: 1.5rem;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.thanks-info {
    background: var(--bg-highlight);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.thanks-info p {
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2.5rem 0;
}

.thanks-additional {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-additional h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.thanks-additional ol {
    padding-left: 2rem;
}

.thanks-additional li {
    margin-bottom: 0.75rem;
}

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

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text-narrow h1 {
        font-size: 1.75rem;
    }

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

    .text-narrow h2 {
        font-size: 1.5rem;
    }

    .editorial-section {
        padding: 2.5rem 1.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}
