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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a90c8;
    --accent-color: #e8903b;
    --text-color: #2d2d2d;
    --text-light: #5a5a5a;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background);
    font-size: 17px;
}

.header-minimal {
    background-color: var(--background);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    background-color: var(--background-alt);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.nav-floating {
    display: flex;
    gap: 1.5rem;
}

.nav-floating a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.nav-floating a:hover {
    color: var(--secondary-color);
}

.editorial-container {
    background-color: var(--background);
}

.story-flow {
    width: 100%;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 500px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    padding: 3rem 2rem;
    color: white;
}

.hero-text-overlay h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-top: 1rem;
    font-weight: 300;
    text-align: center;
    opacity: 0.95;
}

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.content-narrow h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.content-narrow h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem 0;
    color: var(--text-color);
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem 0;
    color: var(--text-color);
}

.content-narrow h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
    color: var(--text-color);
}

.content-narrow p {
    margin-bottom: 1.5rem;
}

.content-narrow ul,
.content-narrow ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.content-narrow li {
    margin-bottom: 0.75rem;
}

.inline-image-block {
    margin: 3rem 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.image-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

.editorial-quote {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    color: var(--primary-color);
    margin: 2.5rem 0;
    padding: 1.5rem 0 1.5rem 2rem;
    border-left: 4px solid var(--accent-color);
    line-height: 1.6;
}

.citation-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.services-cards-editorial {
    background-color: var(--background-alt);
    padding: 4rem 0;
}

.service-card-editorial {
    background-color: white;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: var(--background-alt);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-editorial:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h2,
.service-content h3 {
    font-size: 1.6rem;
    margin: 0 0 1rem 0;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 141, 0.25);
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.trust-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.form-section-editorial {
    background-color: var(--background);
    padding: 4rem 0;
}

.form-container {
    background-color: var(--background-alt);
    padding: 3rem;
    border-radius: 8px;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: white;
    transition: border-color 0.2s ease;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--secondary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

.disclaimer-section {
    background-color: var(--background-alt);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 4px;
}

.disclaimer-box h3 {
    margin: 0 0 1rem 0;
    color: var(--text-color);
    font-size: 1.2rem;
}

.disclaimer-box p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.references-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.references-list {
    margin-left: 1.5rem;
}

.references-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.references-list a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.contact-info-section {
    background-color: var(--background-alt);
    padding: 3rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-card h2 {
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    color: var(--primary-color);
}

.contact-card p {
    margin: 0.5rem 0;
    color: var(--text-light);
}

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

.thanks-container {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--success-color);
    background-color: #d4edda;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: var(--background-alt);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.thanks-details p {
    margin: 0.75rem 0;
}

.thanks-info {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 1rem;
}

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

.steps-list {
    text-align: left;
    margin: 1rem 0 1rem 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.thanks-additional {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-additional p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.legal-page h1 {
    margin-bottom: 2rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
}

.legal-page table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

.legal-page table th {
    background-color: var(--background-alt);
    font-weight: 600;
}

.legal-update {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 3rem;
}

.footer {
    background-color: var(--text-color);
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 2rem 1rem 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 45, 45, 0.98);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px 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: 2rem;
    flex-wrap: wrap;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

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

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-floating {
        width: 100%;
        justify-content: space-between;
    }

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

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

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

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

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

    .editorial-quote {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }

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

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

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

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

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

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

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
}
