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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e74c3c;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: var(--bg-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: 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(--accent-color);
}

.editorial-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

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

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    background-color: var(--bg-light);
}

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

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

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

.page-header {
    margin-bottom: 50px;
    text-align: center;
}

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

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

.content-section {
    margin-bottom: 50px;
}

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

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

.content-section h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--secondary-color);
}

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

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 35px;
}

.content-section ul,
.content-section ol {
    margin: 20px 0 20px 35px;
}

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

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

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

.insight-quote {
    font-size: 26px;
    font-style: italic;
    color: var(--secondary-color);
    border-left: 4px solid var(--accent-color);
    padding: 25px 35px;
    margin: 40px 0;
    background-color: var(--bg-light);
    line-height: 1.5;
}

.trust-element {
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    padding: 30px;
    margin: 40px 0;
}

.trust-element h3 {
    margin-top: 0;
    font-size: 22px;
    color: var(--primary-color);
}

.trust-element a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.trust-element a:hover {
    text-decoration: underline;
}

.testimonial-inline {
    background-color: var(--bg-light);
    padding: 30px 40px;
    margin: 40px 0;
    border-left: 5px solid var(--primary-color);
}

.testimonial-inline p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.services-cards {
    margin: 60px -30px 60px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
    padding: 30px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

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

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

.service-card p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

.cta-button:hover {
    background-color: #c0392b;
}

.cta-button.secondary {
    background-color: var(--secondary-color);
    margin-left: 15px;
}

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

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

.debate-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

.selected-service-display {
    background-color: var(--bg-white);
    padding: 20px;
    border: 2px solid var(--accent-color);
    margin: 15px 0;
    font-family: Arial, sans-serif;
}

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

.submit-button:hover {
    background-color: #c0392b;
}

.services-detailed {
    margin: 50px 0;
}

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

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

.service-info {
    margin-top: 30px;
}

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

.service-price-large {
    font-size: 36px;
    font-weight: bold;
    color: var(--accent-color);
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.contact-info-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-detail {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

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

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

.thanks-message {
    text-align: left;
    max-width: 680px;
    margin: 0 auto;
}

.submission-details {
    background-color: var(--bg-light);
    padding: 30px;
    margin: 30px 0;
}

.selected-service-confirmation {
    font-family: Arial, sans-serif;
}

.selected-service-confirmation h3 {
    margin-top: 0;
    color: var(--primary-color);
}

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

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 10px;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.legal-page h4 {
    font-size: 19px;
    margin: 25px 0 12px;
    color: var(--secondary-color);
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-family: Arial, sans-serif;
}

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

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

.legal-page table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.gdpr-table,
.cookie-table {
    font-size: 15px;
}

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

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

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

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

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

.footer-section a {
    color: var(--bg-white);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-section.references ol {
    margin: 0;
    padding-left: 20px;
}

.footer-section.references li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255,255,255,0.1);
    font-size: 14px;
    line-height: 1.6;
    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: 14px;
    font-family: Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 25px 30px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    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: 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;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: Arial, sans-serif;
    transition: opacity 0.3s ease;
}

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

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

.cookie-reject {
    background-color: var(--bg-light);
    color: var(--text-color);
}

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

.cookie-link {
    color: var(--bg-white);
    text-decoration: underline;
    font-size: 14px;
}

@media (max-width: 768px) {
    .editorial-container {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .services-cards {
        margin-left: 0;
        margin-right: 0;
    }

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

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

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

    .cta-button.secondary {
        margin-left: 0;
    }
}