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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-gray: #ecf0f1;
    --border-color: #bdc3c7;
    --white: #fff;
    --max-content-width: 720px;
    --spacing-unit: 1.5rem;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 18px;
}

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

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

.nav-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.editorial-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.article-lead {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.5;
    font-style: italic;
}

.article-body {
    font-size: 1.1rem;
}

.content-block {
    margin-bottom: 2.5rem;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.content-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    margin-top: 1.8rem;
    color: var(--primary-color);
}

.content-block p {
    margin-bottom: 1.2rem;
}

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

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.inline-image figcaption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.8rem;
    text-align: center;
}

.editorial-list {
    margin: 1.5rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.editorial-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.highlight-box {
    background-color: var(--light-gray);
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--secondary-color);
}

.highlight-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.attribution {
    font-size: 0.95rem;
    color: #666;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 0.95rem;
}

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

.btn-text-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.btn-text-link:hover {
    border-bottom-color: var(--accent-color);
}

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

.service-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
}

.service-item h3 {
    margin-top: 0;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-duration {
    font-size: 0.95rem;
    color: #666;
    margin: 0.8rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.testimonial-block {
    margin: 3rem 0;
}

.testimonial-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 3px solid var(--primary-color);
}

.testimonial-item p:first-child {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.stats-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 3rem 0;
    gap: 2rem;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.final-note {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    margin-top: 3rem;
}

.footer-editorial {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

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

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ecf0f1;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--white);
    padding: 1.5rem;
    display: none;
    z-index: 10000;
}

.cookie-banner.visible {
    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;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

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

.btn-cookie-accept:hover {
    opacity: 0.9;
}

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

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

.services-detailed {
    margin: 2rem 0;
}

.service-detailed {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.service-meta {
    font-size: 1rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.service-body {
    margin-top: 1.5rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    margin-top: 0;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-info-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.contact-info-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

.info-note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.link-item {
    flex: 1;
    min-width: 250px;
}

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

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

.legal-page .content-block h2 {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-lead {
        font-size: 1.1rem;
    }

    body {
        font-size: 16px;
    }

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

    .stats-block {
        flex-direction: column;
    }

    .stat-item {
        min-width: 100%;
    }

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

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

    .contact-info-grid,
    .links-grid {
        flex-direction: column;
    }

    .service-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .article-header h1 {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}