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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafaf8;
}

.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.3px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    background-color: #f5f5f5;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
}

.editorial-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-editorial {
    margin-bottom: 4rem;
}

.hero-image-container {
    margin-bottom: 2rem;
    background-color: #e8e8e8;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-content-narrow {
    text-align: center;
    padding: 0 1rem;
}

.hero-content-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.hero-lead {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.5;
}

.content-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.opening-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.text-block-narrow h2 {
    font-size: 1.9rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.text-block-narrow h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
    font-weight: 600;
}

.text-block-narrow p {
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
}

.text-block-narrow ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.text-block-narrow li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.inline-image-block {
    margin: 3rem 0;
    background-color: #e8e8e8;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 1rem;
    background-color: #f5f5f5;
}

.interview-quote {
    border-left: 4px solid #333;
    padding-left: 2rem;
    margin: 3rem 0;
    font-style: italic;
}

.interview-quote p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 0.8rem;
}

.interview-quote cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.cta-inline {
    background-color: #f8f8f6;
    padding: 2.5rem 2rem;
    text-align: center;
    margin: 3rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.cta-text {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.btn-editorial {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn-editorial:hover {
    background-color: #1a1a1a;
}

.services-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #444;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e8e8;
}

.duration {
    font-size: 0.9rem;
    color: #666;
}

.price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f8f8f6;
    border: 1px solid #e0e0e0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #2a2a2a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a2a2a;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1a1a1a;
}

.disclaimer-section {
    background-color: #f5f5f3;
    padding: 2rem;
    margin-top: 4rem;
    border-left: 3px solid #999;
}

.disclaimer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.cta-final {
    text-align: center;
    padding: 3rem 2rem;
    margin: 4rem 0 2rem;
    background-color: #2a2a2a;
    color: #ffffff;
}

.cta-final h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: #e8e8e8;
}

.btn-editorial-large {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: #ffffff;
    color: #2a2a2a;
    text-decoration: none;
    font-size: 1.05rem;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.btn-editorial-large:hover {
    background-color: #f0f0f0;
}

.footer-editorial {
    background-color: #1a1a1a;
    color: #b8b8b8;
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 740px;
    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: #b8b8b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-note {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2a2a2a;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    flex: 1;
}

.cookie-content a {
    color: #2a2a2a;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: #2a2a2a;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #1a1a1a;
}

.btn-cookie-reject {
    background-color: #e0e0e0;
    color: #333;
}

.btn-cookie-reject:hover {
    background-color: #d0d0d0;
}

.page-header-editorial {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.page-header-editorial h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.header-lead {
    font-size: 1.2rem;
    color: #555;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 3rem 0;
}

.service-detail-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-image {
    background-color: #e8e8e8;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.3rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
}

.price-large {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.contact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: #f5f5f5;
    padding: 0.8rem;
    display: inline-block;
}

.email-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.note-small {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

.thanks-page-content {
    text-align: center;
    padding: 3rem 0;
}

.thanks-page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.centered {
    text-align: center;
}

.service-confirmation-box {
    background-color: #f8f8f6;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
}

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

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.legal-page p,
.legal-page li {
    font-size: 1rem;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

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

    .nav-links {
        gap: 1rem;
    }

    .ad-disclosure {
        font-size: 0.7rem;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .contact-info-block {
        padding: 1.5rem;
    }

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}