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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a73e8;
}

.nav-ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.7rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a73e8;
}

.editorial-layout {
    padding-top: 80px;
}

.hero-editorial {
    max-width: 100%;
    margin-bottom: 4rem;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a202c;
}

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-image-editorial {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

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

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-narrow h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    font-weight: 700;
    color: #1a202c;
}

.content-narrow h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
    color: #2d3748;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.inline-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 8px;
    display: block;
    background-color: #f7fafc;
}

.full-width-section {
    width: 100%;
    padding: 4rem 0;
    margin: 4rem 0;
}

.bg-light {
    background-color: #f7fafc;
}

.bg-dark {
    background-color: #2d3748;
    color: #ffffff;
}

.bg-dark h2 {
    color: #ffffff;
}

.bg-dark p {
    color: #e2e8f0;
}

.services-editorial {
    margin-top: 2rem;
}

.service-card-editorial {
    background-color: #ffffff;
    padding: 2rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e2e8f0;
}

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

.service-card-editorial img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background-color: #f7fafc;
}

.service-card-editorial h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a202c;
}

.service-card-editorial p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.price-editorial {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a73e8;
    margin: 1.5rem 0;
}

.btn-select-service {
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select-service:hover {
    background-color: #1557b0;
}

.btn-primary {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1557b0;
}

.btn-primary-large {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.btn-primary-large:hover {
    background-color: #1557b0;
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #1a73e8;
    text-decoration: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #1a73e8;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #1a73e8;
    color: #ffffff;
}

.cta-inline {
    text-align: center;
    margin: 3rem 0;
}

.cta-final {
    text-align: center;
    padding: 4rem 2rem;
}

.testimonials-editorial {
    margin-top: 3rem;
}

.testimonial {
    background-color: #f7fafc;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #1a73e8;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
}

.form-section-editorial {
    background-color: #f7fafc;
    padding: 4rem 0;
    margin: 4rem 0;
}

.editorial-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.selected-service-display {
    background-color: #e6f2ff;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.footer-editorial {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: #cbd5e0;
    line-height: 1.8;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-copy {
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
}

.page-header-editorial {
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 32, 44, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-cookie:hover {
    background-color: #1557b0;
}

.btn-cookie-alt {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

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

.contact-section {
    margin-top: 2rem;
}

.contact-info-block {
    margin-bottom: 3rem;
}

.contact-info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.contact-info-block p {
    color: #4a5568;
    line-height: 1.8;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a202c;
}

.faq-item p {
    color: #4a5568;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #e6f2ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.next-steps ol {
    padding-left: 2rem;
}

.next-steps ol li {
    margin-bottom: 1rem;
    color: #4a5568;
}

.contact-reminder {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    margin: 2rem 0;
}

.contact-reminder h3 {
    margin-bottom: 1rem;
    color: #1a202c;
}

.contact-reminder p {
    margin-bottom: 0.5rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
    color: #4a5568;
}

.legal-content a {
    color: #1a73e8;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    font-style: italic;
    color: #718096;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.gdpr-table th,
.gdpr-table td {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.gdpr-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #1a202c;
}

.gdpr-table td {
    color: #4a5568;
}

.process-list {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.process-list li {
    margin-bottom: 1.5rem;
    color: #4a5568;
    padding-left: 0.5rem;
}

.process-list strong {
    color: #1a202c;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

    .hero-intro {
        font-size: 1.1rem;
    }

    .content-narrow h2 {
        font-size: 1.6rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .btn-cookie,
    .btn-cookie-alt {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .content-narrow,
    .hero-content-narrow {
        padding: 2rem 1.5rem;
    }

    .hero-editorial h1 {
        font-size: 1.7rem;
    }
}