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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-color: #2d2d2d;
    --light-text: #666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

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

.cookie-accept:hover {
    background-color: #d63850;
}

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

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.nav-menu {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--highlight-color);
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-editorial {
    margin-bottom: 60px;
    text-align: center;
}

.hero-text-center h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-text);
    line-height: 1.6;
}

.page-header {
    margin-bottom: 48px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 800;
}

.header-subtitle {
    font-size: 18px;
    color: var(--light-text);
    line-height: 1.6;
}

.text-column {
    font-size: 18px;
    line-height: 1.8;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 32px;
    font-weight: 400;
}

.text-column h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--primary-color);
    margin: 48px 0 24px 0;
    font-weight: 700;
}

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

.text-column p {
    margin-bottom: 24px;
}

.text-column strong {
    font-weight: 600;
    color: var(--primary-color);
}

.text-column em {
    font-style: italic;
    color: var(--accent-color);
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.inline-cta {
    margin: 32px 0;
    padding: 24px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--highlight-color);
    border-radius: 4px;
}

.cta-link {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}

.cta-link:hover {
    color: var(--primary-color);
}

.cta-button,
.cta-button-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    text-align: center;
}

.cta-button {
    background-color: var(--highlight-color);
    color: white;
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.cta-button-secondary {
    background-color: transparent;
    color: var(--highlight-color);
    border: 2px solid var(--highlight-color);
}

.cta-button-secondary:hover {
    background-color: var(--highlight-color);
    color: white;
}

.findings-list {
    list-style: none;
    margin: 24px 0;
}

.findings-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.findings-list li:last-child {
    border-bottom: none;
}

.findings-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 20px;
}

.quote-block {
    margin: 40px 0;
    padding: 32px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.quote-block p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.quote-block cite {
    font-style: normal;
    font-size: 16px;
    color: var(--light-text);
    font-weight: 500;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.service-card {
    padding: 32px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--highlight-color);
    box-shadow: 0 8px 24px rgba(233, 69, 96, 0.1);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 0 0 16px 0;
    font-weight: 700;
}

.service-card p {
    margin-bottom: 16px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--highlight-color);
    margin-top: 16px;
}

.testimonial {
    margin: 32px 0;
    padding: 28px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
    color: var(--primary-color);
}

.testimonial cite {
    font-style: normal;
    font-size: 15px;
    color: var(--light-text);
    font-weight: 500;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
    margin: 32px 0;
}

.process-list li {
    counter-increment: process-counter;
    padding: 20px 0 20px 60px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.process-list li:last-child {
    border-bottom: none;
}

.process-list li:before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 16px;
    width: 40px;
    height: 40px;
    background-color: var(--highlight-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--highlight-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.final-note {
    margin: 48px 0 0 0;
    padding: 28px;
    background-color: var(--bg-light);
    border-radius: 8px;
    font-size: 16px;
}

.final-note p {
    margin-bottom: 12px;
}

.final-note p:last-child {
    margin-bottom: 0;
}

.service-detail {
    margin: 48px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--highlight-color);
}

.service-detail h3 {
    font-size: 28px;
    margin: 0 0 16px 0;
    color: var(--primary-color);
}

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

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 18px;
}

.contact-info-block {
    margin: 32px 0;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-info-block h3 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: var(--primary-color);
}

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

.contact-info-block a {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
}

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

.small-note {
    font-size: 14px;
    color: var(--light-text);
    font-style: italic;
}

.faq-item {
    margin: 32px 0;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px auto;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
}

.timeline-item {
    margin: 32px 0;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

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

.recommendations-list {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.recommendations-list li {
    padding: 12px 0 12px 28px;
    position: relative;
}

.recommendations-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 24px;
}

.recommendations-list a {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
}

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

.thanks-contact {
    margin: 40px 0;
    padding: 28px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

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

.thanks-contact a {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
}

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

.thanks-cta {
    margin: 40px 0;
}

.legal-page .text-column {
    font-size: 16px;
}

.legal-date {
    font-size: 14px;
    color: var(--light-text);
    font-style: italic;
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0 16px 32px;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}

.cookies-table thead {
    background-color: var(--bg-light);
}

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

.cookies-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 48px 20px 24px 20px;
    margin-top: 80px;
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }

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

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

    .page-header h1 {
        font-size: 32px;
    }

    .text-column {
        font-size: 17px;
    }

    .lead-text {
        font-size: 19px;
    }

    .text-column h2 {
        font-size: 26px;
    }

    .text-column h3 {
        font-size: 20px;
    }

    .editorial-container {
        padding: 40px 16px;
    }

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

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

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

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

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-menu a {
        font-size: 13px;
    }

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

    .page-header h1 {
        font-size: 28px;
    }

    .price {
        font-size: 24px;
    }

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