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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f4c75;
    --light-accent: #3282b8;
    --text-color: #2d2d2d;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    font-size: 18px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 24px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: block;
}

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

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

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

.btn-cookie {
    padding: 10px 24px;
    background: var(--light-accent);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-cookie:hover {
    background: var(--accent-color);
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid var(--white);
}

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

.nav-minimal {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.editorial-layout {
    min-height: 100vh;
}

.hero-editorial {
    padding: 80px 24px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.lead {
    font-size: 21px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.page-header-editorial {
    padding: 60px 24px 40px;
    background: var(--bg-light);
}

.editorial-section {
    padding: 60px 24px;
}

.editorial-section.bg-light {
    background: var(--bg-light);
}

.editorial-section.bg-dark {
    background: var(--bg-dark);
    color: var(--white);
}

.editorial-section.bg-dark h2,
.editorial-section.bg-dark h3 {
    color: var(--white);
}

.editorial-section.bg-dark p,
.editorial-section.bg-dark li {
    color: rgba(255, 255, 255, 0.9);
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.editorial-section h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.editorial-section h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 32px 0 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.editorial-section p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    display: block;
}

.inline-cta {
    display: inline-block;
    margin: 32px 0;
    color: var(--accent-color);
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.inline-cta:hover {
    color: var(--light-accent);
    transform: translateX(4px);
}

.inline-cta-light {
    color: var(--light-accent);
}

.inline-cta-light:hover {
    color: var(--white);
}

.inline-link-light {
    color: var(--light-accent);
    text-decoration: underline;
}

.inline-link-light:hover {
    color: var(--white);
}

.testimonial-inline {
    margin: 48px 0;
    padding: 32px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
}

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

blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    border-left: 4px solid var(--accent-color);
    background: var(--bg-light);
}

.editorial-list {
    margin: 24px 0 24px 32px;
    font-size: 18px;
}

.editorial-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.service-card {
    margin: 48px 0;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-card h3 {
    margin-top: 0;
    font-size: 26px;
}

.service-card .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.service-card-detailed {
    margin: 32px 0;
    padding: 48px;
    background: var(--white);
    border-radius: 8px;
}

.service-card-dark {
    background: rgba(255, 255, 255, 0.05);
}

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 16px 0 24px;
}

.service-card-dark .price-large {
    color: var(--light-accent);
}

.btn-select-service {
    margin-top: 24px;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-select-service:hover {
    background: var(--light-accent);
    transform: translateY(-2px);
}

.form-editorial {
    margin: 40px 0;
    padding: 48px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(15, 76, 117, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 14px 40px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--light-accent);
    transform: translateY(-2px);
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-sticky {
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(15, 76, 117, 0.3);
    transition: var(--transition);
}

.btn-sticky:hover {
    background: var(--light-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 76, 117, 0.4);
}

.contact-info {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

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

.service-selected {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
    margin: 24px 0;
    font-size: 18px;
}

.thanks-links {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.legal-content h2 {
    margin-top: 48px;
    font-size: 28px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
}

.legal-content ul {
    margin: 16px 0 16px 32px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

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

.legal-content table th {
    background: var(--bg-light);
    font-weight: 600;
}

.cookies-table {
    font-size: 15px;
}

.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 24px 24px;
}

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

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

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 71px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .lead {
        font-size: 18px;
    }

    .editorial-section h2 {
        font-size: 26px;
    }

    .editorial-section h3 {
        font-size: 20px;
    }

    .service-card,
    .form-editorial {
        padding: 24px;
    }

    .service-card-detailed {
        padding: 24px;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .sticky-cta {
        bottom: 16px;
        right: 16px;
    }

    .btn-sticky {
        padding: 12px 24px;
        font-size: 14px;
    }

    body {
        font-size: 16px;
    }

    .editorial-section p {
        font-size: 16px;
    }

    .price-large {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-editorial {
        padding: 60px 20px 40px;
    }

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

    .hero-editorial h1 {
        font-size: 28px;
    }

    .nav-container {
        padding: 16px 20px;
    }

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