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

:root {
    --primary-color: #2c5282;
    --secondary-color: #4a7ba7;
    --accent-color: #e67e50;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

.brand {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.article-header {
    margin-bottom: 3rem;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-medium);
    font-weight: 400;
}

.inline-image,
.content-image {
    width: 100%;
    margin: 2.5rem 0;
}

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

.narrative-section,
.insight-section,
.expertise-section,
.values-section,
.trust-section,
.services-preview,
.form-section,
.final-cta,
.service-detail,
.booking-section,
.contact-section,
.confirmation-section,
.cta-section {
    margin-bottom: 3rem;
}

.narrative-section p,
.insight-section p,
.expertise-section p,
.values-section p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.narrative-section h2,
.insight-section h2,
.expertise-section h2,
.values-section h2,
.trust-section h2,
.services-preview h2,
.form-section h2,
.final-cta h2,
.service-detail h2,
.booking-section h2,
.confirmation-section h2,
.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.narrative-section h3,
.insight-section h3,
.expertise-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.highlight-box {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--accent-color);
}

.highlight-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.highlight-box p {
    color: var(--text-medium);
    margin: 0;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.price,
.service-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.cta-inline,
.cta-button,
.submit-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-inline:hover,
.cta-button:hover,
.submit-btn:hover {
    background-color: #d66d42;
    transform: translateY(-2px);
}

.testimonial {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial cite {
    font-style: normal;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.editorial-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 4px;
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--bg-white);
}

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

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

.final-cta,
.cta-section {
    text-align: center;
    padding: 3rem 0;
}

.final-cta h2,
.cta-section h2 {
    margin-bottom: 1rem;
}

.final-cta p,
.cta-section p {
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.site-footer {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

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

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.9rem;
}

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

.footer-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    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 {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

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

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

.expertise-list,
.service-detail ul,
.contact-section ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.expertise-list li,
.service-detail ul li,
.contact-section ul li {
    margin-bottom: 0.8rem;
    color: var(--text-medium);
}

.value-block {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--secondary-color);
}

.value-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.value-block p {
    color: var(--text-medium);
}

.service-detail {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail strong {
    color: var(--text-dark);
}

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

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-medium);
    line-height: 1.8;
}

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

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

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.thanks-page .success-icon {
    font-size: 4rem;
    color: var(--success-color);
    text-align: center;
    margin: 2rem 0;
}

.confirmation-details {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.next-steps,
.preparation-info,
.additional-info {
    margin: 2.5rem 0;
}

.next-steps ol,
.preparation-info ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.next-steps li,
.preparation-info li {
    margin-bottom: 0.8rem;
    color: var(--text-medium);
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
    margin: 0;
}

.back-navigation {
    text-align: center;
    margin-top: 3rem;
}

.legal-page .legal-section {
    margin: 3rem 0;
}

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

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

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

.legal-page ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

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

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

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

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

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    body {
        font-size: 16px;
    }

    .editorial-content {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.7rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .brand {
        font-size: 0.95rem;
    }

    .nav-links {
        gap: 0.7rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }
}