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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c3e50;
}

.editorial-container {
    max-width: 100%;
    background-color: #fafafa;
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
    background-color: #ffffff;
}

.hero-editorial {
    position: relative;
    margin: -60px -30px 50px -30px;
    overflow: hidden;
    background-color: #34495e;
}

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

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

.hero-overlay h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #e8e8e8;
    max-width: 600px;
}

.content-section {
    margin-top: 40px;
}

.content-section h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-section h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #34495e;
}

.lead-paragraph {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 30px;
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

.inline-image-block {
    margin: 40px 0;
    background-color: #f5f5f5;
}

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

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.citation:hover {
    text-decoration: underline;
}

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

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #1a252f;
}

.cta-link-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-link-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.service-preview-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.preview-card {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    overflow: hidden;
}

.preview-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.preview-card h3 {
    margin: 20px 20px 10px 20px;
    font-size: 20px;
    color: #2c3e50;
}

.preview-card p {
    margin: 0 20px 20px 20px;
    font-size: 16px;
    color: #5a6c7d;
}

.testimonial {
    margin: 40px 0;
    padding: 30px 30px 30px 20px;
    border-left: 4px solid #3498db;
    background-color: #f8f9fa;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 16px;
}

.testimonial cite {
    font-size: 15px;
    font-style: normal;
    color: #5a6c7d;
}

.form-container-editorial {
    margin: 50px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.form-container-editorial h3 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 24px;
    color: #2c3e50;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1a252f;
}

.disclaimer-section {
    margin: 50px 0;
    padding: 24px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
    margin: 0;
}

.editorial-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
}

.footer-references {
    margin-bottom: 40px;
}

.footer-references h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.footer-references li {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2c3e50;
}

.footer-company {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.footer-company p {
    margin-bottom: 8px;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.service-detail {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
    gap: 24px;
}

.service-detail.reverse {
    flex-direction: column-reverse;
}

.service-image {
    background-color: #f5f5f5;
}

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

.service-text {
    padding: 0;
}

.service-text h2 {
    margin-top: 0;
}

.service-price {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 20px;
}

.service-duration {
    font-size: 15px;
    color: #6c757d;
    margin-top: 8px;
}

.cta-section-centered {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f9fa;
    text-align: center;
    border-radius: 6px;
}

.cta-section-centered h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 24px;
}

.cta-section-centered p {
    margin-bottom: 24px;
    font-size: 16px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.contact-info-block {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
}

.contact-info-block h2 {
    margin-top: 0;
    font-size: 22px;
}

.thanks-page {
    min-height: 60vh;
}

.thanks-content {
    padding: 40px 0;
}

.thanks-info,
.thanks-next-steps {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
}

.thanks-next-steps ul {
    padding-left: 20px;
}

.thanks-next-steps li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-next-steps a {
    color: #3498db;
    text-decoration: none;
}

.thanks-next-steps a:hover {
    text-decoration: underline;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 24px;
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
}

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

    .nav-links {
        gap: 20px;
    }

    .editorial-content {
        padding: 40px 20px;
    }

    .hero-editorial {
        margin: -40px -20px 40px -20px;
    }

    .hero-overlay {
        padding: 30px 24px;
    }

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

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

    .content-section h1 {
        font-size: 32px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .lead-paragraph {
        font-size: 18px;
    }

    .form-container-editorial {
        padding: 24px;
    }

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

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

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