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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f8f6f3;
    --background-white: #ffffff;
    --border-color: #e0ddd8;
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #ffeeba;
}

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

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

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

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-editorial {
    padding: 80px 0 60px;
}

.hero-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 400;
}

.intro-lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-image {
    margin: 50px 0;
}

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

.narrative-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.narrative-section h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 400;
}

.narrative-section p {
    margin-bottom: 25px;
}

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

.inline-figure img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--background-light);
}

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

.btn-text-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 3px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-text-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.services-preview {
    padding: 70px 0;
    background-color: var(--background-light);
}

.services-preview h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.service-cards-editorial {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: var(--background-white);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.service-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: bold;
    margin: 20px 0;
}

.btn-select-service {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonial-inline {
    margin: 50px 0;
    padding: 40px;
    background-color: var(--background-light);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 16px;
    color: var(--text-light);
}

.form-section {
    padding: 70px 0;
    background-color: var(--background-white);
}

.form-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.editorial-form {
    margin-top: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 1px solid var(--border-color);
    background-color: var(--background-white);
    color: var(--text-dark);
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

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

.disclaimer-section {
    padding: 50px 0;
    background-color: var(--background-light);
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

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

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

.footer-section ul li a:hover {
    color: white;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: opacity 0.3s ease;
}

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

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

.btn-cookie:hover {
    opacity: 0.8;
}

.page-header {
    padding: 70px 0 40px;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.services-detailed {
    padding: 60px 0;
}

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

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

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

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--background-light);
}

.service-detailed h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.price-display {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: bold;
    margin: 20px 0 25px;
}

.service-detailed h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-weight: 600;
}

.service-detailed ul {
    margin: 20px 0 30px 25px;
}

.service-detailed ul li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.contact-info-section {
    padding: 60px 0;
}

.contact-details {
    margin-bottom: 50px;
}

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

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item .note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.contact-image {
    margin-top: 40px;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--background-light);
}

.info-box {
    background-color: var(--background-light);
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid var(--accent-color);
}

.info-box h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-box p {
    margin-bottom: 20px;
}

.info-box p strong {
    color: var(--primary-color);
}

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

.thanks-content h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 400;
}

.thanks-content .lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.confirmation-details {
    background-color: var(--background-light);
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--secondary-color);
}

.confirmation-details p {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.confirmation-details strong {
    color: var(--primary-color);
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.next-steps ol {
    margin-left: 25px;
}

.next-steps ol li {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-image {
    margin: 50px 0;
}

.thanks-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--background-light);
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 400;
}

.legal-content h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 25px 0 12px;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-table thead {
    background-color: var(--background-light);
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

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

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

    .narrative-section h2 {
        font-size: 26px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .service-card {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
    }

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

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

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}