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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8fb5;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --max-content-width: 720px;
}

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-family: 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav-links a:hover {
    color: var(--primary-color);
}

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

.article-hero {
    margin-bottom: 3rem;
    text-align: center;
}

.article-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    font-style: italic;
    font-weight: 400;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.article-content h2 {
    font-size: 1.9rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.article-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.article-content h4 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

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

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

blockquote.testimonial {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    font-size: 1.15rem;
}

blockquote.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.btn-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.3s;
}

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

.cta-box {
    background-color: var(--bg-light);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

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

.cta-box p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    padding: 2rem 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-family: 'Arial', sans-serif;
}

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

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

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

.service-item h3,
.service-item-detailed h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.75rem 1.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
}

.service-includes {
    margin: 1.5rem 0;
}

.service-includes h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-family: 'Arial', sans-serif;
}

.featured-service {
    position: relative;
    background-color: #f0f8ff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.3rem 1rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
}

.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

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

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

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

.faq-item h4 {
    margin-top: 0;
    color: var(--primary-color);
}

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

.editorial-form h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-white);
}

.form-group textarea {
    resize: vertical;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.closing-paragraph {
    margin-top: 3rem;
    font-style: italic;
    color: var(--text-light);
}

.values-section {
    margin: 2rem 0;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.process-timeline {
    margin: 2.5rem 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.timeline-marker {
    flex-shrink: 0;
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    height: fit-content;
}

.timeline-content h4 {
    margin-top: 0;
}

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

.contact-method {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-method h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.contact-method a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.info-box {
    background-color: #e8f4f8;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.info-box h4 {
    margin-top: 0;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.info-box ul {
    margin-bottom: 0;
}

.document-list {
    margin-left: 2rem;
}

.document-list li {
    margin-bottom: 0.75rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-page {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-content {
    text-align: left;
}

.thanks-info-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    text-align: center;
}

.thanks-info-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-text h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.thanks-footer {
    margin-top: 3rem;
    text-align: center;
}

.legal-page h2 {
    font-size: 1.6rem;
}

.legal-page h3 {
    font-size: 1.3rem;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.legal-note {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-column p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #444444;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 1.5rem;
    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;
}

.cookie-content p {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

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

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

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

    .subtitle {
        font-size: 1.1rem;
    }

    .lead-paragraph {
        font-size: 1.15rem;
    }

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

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

    .contact-info-section {
        flex-direction: column;
    }

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

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

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

    .cookie-buttons button {
        width: 100%;
    }

    .timeline-item,
    .step,
    .step-item {
        flex-direction: column;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group .btn-secondary {
        width: 100%;
    }
}

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

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

    .article-hero h1 {
        font-size: 1.7rem;
    }

    body {
        font-size: 16px;
    }
}