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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c0986b;
    --text-color: #333333;
    --text-light: #666666;
    --background-light: #f8f6f3;
    --background-white: #ffffff;
    --border-color: #e0ddd8;
    --success-color: #5a8f6f;
    --error-color: #a64d4d;
}

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

.ad-disclosure {
    background-color: var(--background-light);
    color: var(--text-light);
    font-size: 13px;
    text-align: center;
    padding: 8px 20px;
    font-family: 'Arial', sans-serif;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--background-white);
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 26px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

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

.story-flow {
    display: flex;
    flex-direction: column;
}

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

.hero-editorial {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--background-light);
    margin-bottom: 50px;
}

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

.hero-text-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 30px;
}

.hero-text-centered h1 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: normal;
}

.hero-lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

.page-header-editorial {
    margin: 80px 0 50px 0;
}

.page-header-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

.header-lead {
    font-size: 20px;
    color: var(--text-light);
    font-style: italic;
}

.narrative-section {
    margin-bottom: 80px;
}

.narrative-section h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 25px;
    margin-top: 50px;
    color: var(--primary-color);
    font-weight: normal;
}

.narrative-section h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-top: 35px;
    color: var(--secondary-color);
    font-weight: normal;
}

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

.narrative-section ul {
    margin-bottom: 25px;
    margin-left: 30px;
}

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

.inline-image-block {
    margin: 50px 0;
    background-color: var(--background-light);
    padding: 20px;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}

.image-caption {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

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

.cta-text-link {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 20px;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

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

.insight-block {
    background-color: var(--background-light);
    padding: 80px 0;
    margin-bottom: 80px;
}

.insight-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: normal;
}

.service-cards-editorial {
    margin-top: 60px;
}

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

.service-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 25px;
    background-color: var(--background-light);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: normal;
}

.service-card p {
    margin-bottom: 15px;
    font-size: 17px;
}

.service-card .price {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
}

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

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

.submit-btn {
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    margin-bottom: 80px;
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: normal;
}

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

.service-detail-block {
    margin-bottom: 70px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail-image {
    margin-bottom: 30px;
    background-color: var(--background-light);
}

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

.service-detail-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

.service-detail-block p {
    margin-bottom: 18px;
}

.service-price {
    font-size: 26px;
    color: var(--secondary-color);
    margin: 30px 0;
    font-family: 'Arial', sans-serif;
}

.form-section-inline {
    background-color: var(--background-light);
    padding: 50px 40px;
    margin-top: 80px;
}

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

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

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

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: normal;
}

.contact-item p {
    line-height: 1.7;
}

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

.contact-note {
    background-color: var(--background-light);
    padding: 30px;
    margin-top: 50px;
}

.contact-note h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

.contact-note a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
}

.contact-note a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--success-color);
    font-weight: normal;
}

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

.thanks-details {
    background-color: var(--background-light);
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.thanks-details p {
    margin-bottom: 10px;
    font-size: 17px;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

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

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

.thanks-next-steps li {
    margin-bottom: 15px;
    font-size: 17px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-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(--secondary-color);
    border: 2px solid var(--secondary-color);
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: normal;
}

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

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
}

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

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

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

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--background-white);
    font-weight: normal;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section a {
    color: var(--background-light);
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 30px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    color: var(--background-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px 0 30px;
    text-align: center;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--background-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;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

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

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

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

    .nav-links {
        gap: 20px;
    }

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

    .hero-image-wrapper {
        height: 400px;
    }

    .service-card img {
        height: 250px;
    }

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

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

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

    .cookie-btn {
        width: 100%;
    }

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

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