* {
    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: 18px;
}

.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.editorial-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-editorial {
    text-align: center;
    padding: 2rem 0 3rem;
}

.hero-editorial h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 2rem;
}

.content-narrow {
    padding: 2rem 0;
}

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

.content-narrow h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.content-narrow ul,
.content-narrow ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-narrow li {
    margin-bottom: 0.7rem;
    color: #444;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 2.5rem 0;
}

.inline-cta {
    text-align: center;
    padding: 2.5rem 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.cta-link {
    font-size: 1.3rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.bg-light {
    background-color: #f9f9f9;
    padding: 3rem 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.trust-marker {
    padding: 2.5rem 0;
    margin: 2rem 0;
}

.trust-marker blockquote {
    border-left: 4px solid #3498db;
    padding-left: 2rem;
    font-style: italic;
    color: #555;
}

.trust-marker blockquote p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.trust-marker cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: #777;
    font-size: 0.95rem;
}

.services-preview {
    padding: 3rem 0;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
    display: block;
}

.btn-service {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-service:hover {
    background-color: #2980b9;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #27ae60;
}

.final-cta {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f0f7ff;
    border-radius: 4px;
    margin: 3rem 0;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.final-cta p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #2980b9;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    flex-grow: 1;
}

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    background-color: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #27ae60;
}

.btn-reject {
    background-color: #95a5a6;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-header {
    text-align: center;
    padding: 2rem 0 3rem;
    border-bottom: 2px solid #f0f0f0;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.header-lead {
    font-size: 1.3rem;
    color: #555;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1.2rem;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f0f7ff;
    border-radius: 4px;
    margin: 2rem 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.services-detail {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem 0;
}

.service-full {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: #444;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #777;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
}

.btn-service-action {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2ecc71;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-service-action:hover {
    background-color: #27ae60;
}

.contact-info {
    padding: 2rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.crisis-note {
    margin-top: 0.8rem;
    font-weight: 600;
    color: #e74c3c;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.thanks-container {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.thanks-service {
    padding: 1.5rem;
    background-color: #f0f7ff;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.thanks-steps li {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.thanks-cta p {
    margin-bottom: 1.5rem;
    color: #555;
}

.thanks-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.legal-content {
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #555;
}

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

.legal-content li {
    margin-bottom: 0.6rem;
    color: #555;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

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

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-lead {
        font-size: 1.2rem;
    }

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

    .editorial-container {
        padding: 2rem 1.5rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

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

    .btn-primary,
    .btn-secondary {
        display: block;
        width: 100%;
    }
}

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

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

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

    .services-cards {
        gap: 1.5rem;
    }
}