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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --link-color: #2980b9;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

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

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

.editorial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: var(--white);
    border-bottom: 2px solid var(--primary-color);
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

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

.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(--accent-color);
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.editorial-hero {
    margin: 0 -20px 50px;
    position: relative;
    background-color: var(--light-bg);
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px;
}

.hero-overlay h1 {
    color: var(--white);
    font-size: 42px;
    line-height: 1.3;
    margin: 0;
    font-weight: normal;
}

.editorial-intro {
    margin: 50px 0;
    text-align: left;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: normal;
}

.editorial-content {
    font-size: 18px;
    line-height: 1.8;
}

.editorial-content p {
    margin-bottom: 25px;
}

.editorial-content h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    color: var(--primary-color);
    font-weight: normal;
    line-height: 1.3;
}

.editorial-content h3 {
    font-size: 24px;
    margin: 35px 0 20px;
    color: var(--secondary-color);
    font-weight: normal;
}

.editorial-content h4 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: var(--text-color);
    font-weight: bold;
}

.editorial-content ul,
.editorial-content ol {
    margin: 25px 0 25px 30px;
}

.editorial-content li {
    margin-bottom: 12px;
}

.inline-image-block {
    margin: 45px 0;
    background-color: var(--light-bg);
}

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

.inline-cta {
    background-color: var(--light-bg);
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.inline-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.inline-cta p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-text-link {
    color: var(--link-color);
    text-decoration: underline;
    font-size: 18px;
    transition: color 0.3s ease;
}

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

.cta-button,
.inline-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover,
.inline-button:hover {
    background-color: var(--secondary-color);
}

.services-preview {
    background-color: var(--light-bg);
    padding: 40px;
    margin: 50px 0;
}

.services-preview h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.services-list {
    list-style: none;
    margin: 0 0 30px 0;
}

.services-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 18px;
}

.services-list li:last-child {
    border-bottom: none;
}

.editorial-page-header {
    text-align: left;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
}

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

.page-intro {
    font-size: 20px;
    color: var(--secondary-color);
    line-height: 1.6;
}

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

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.service-price {
    font-size: 26px;
    font-weight: bold;
    color: var(--accent-color);
    font-family: 'Arial', sans-serif;
    white-space: nowrap;
}

.service-body {
    font-size: 18px;
}

.service-body p {
    margin-bottom: 20px;
}

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

.service-note {
    font-style: italic;
    color: var(--secondary-color);
    font-size: 16px;
}

.form-section {
    background-color: var(--light-bg);
    padding: 50px 40px;
    margin: 60px 0;
}

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

.form-section > p {
    margin-bottom: 30px;
    font-size: 18px;
}

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

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

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

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

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

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

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

.contact-info {
    margin: 40px 0;
    padding: 40px;
    background-color: var(--light-bg);
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

.contact-item p {
    font-size: 18px;
    margin: 0;
    line-height: 1.6;
}

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

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.thanks-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.thanks-link:hover {
    background-color: var(--border-color);
}

.thanks-note {
    background-color: var(--light-bg);
    padding: 25px;
    margin: 40px 0;
    font-size: 16px;
}

.legal-page .editorial-content {
    font-size: 16px;
}

.legal-page h2 {
    font-size: 26px;
    margin: 40px 0 20px;
}

.legal-page h3 {
    font-size: 20px;
    margin: 30px 0 15px;
}

.legal-update {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--secondary-color);
}

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

.gdpr-table thead,
.cookies-table thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.gdpr-table th,
.cookies-table th {
    padding: 12px;
    text-align: left;
    font-weight: bold;
}

.gdpr-table td,
.cookies-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.gdpr-table tbody tr:hover,
.cookies-table tbody tr:hover {
    background-color: var(--light-bg);
}

.editorial-footer {
    background-color: var(--primary-color);
    color: var(--white);
    margin-top: 80px;
    padding: 50px 40px 20px;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white);
    font-family: 'Arial', sans-serif;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.footer-col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 25px;
    flex-wrap: wrap;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.cookie-accept:hover {
    opacity: 0.9;
}

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

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

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

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .lead-text {
        font-size: 20px;
    }

    .editorial-content h2 {
        font-size: 26px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        font-size: 22px;
    }

    .form-section {
        padding: 30px 20px;
    }

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

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

    .cookie-buttons {
        justify-content: stretch;
    }

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