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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8ba6;
    --accent-color: #7ab8d4;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

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

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

.article-hero {
    margin-bottom: 60px;
}

.article-hero.small {
    margin-bottom: 40px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--bg-light);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.article-hero h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 400;
}

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

.article-content {
    font-size: 18px;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.article-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-top: 56px;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--text-dark);
}

.article-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.inline-image-block {
    margin: 48px 0;
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.inline-image-block.small {
    margin: 32px 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-caption {
    padding: 16px 20px;
    font-size: 15px;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.services-inline {
    margin: 56px 0;
}

.service-card-editorial {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-card-editorial h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.price {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cta-inline {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cta-inline:hover {
    background-color: var(--secondary-color);
}

blockquote {
    margin: 48px 0;
    padding: 32px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    font-size: 20px;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 15px;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-section {
    margin: 64px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.form-section h2 {
    margin-top: 0;
}

.editorial-form {
    margin-top: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    width: 100%;
}

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

.selected-service-info {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    border: 2px solid var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.selected-service-info strong {
    color: var(--primary-color);
}

.disclaimer-text {
    margin-top: 56px;
    padding: 24px;
    background-color: var(--bg-light);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.references-list {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-medium);
    padding-left: 24px;
    margin-top: 32px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.references-list li {
    margin-bottom: 16px;
}

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

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

.contact-detail h3 {
    margin-top: 0;
}

.contact-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.faq-section {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 20px;
}

.thanks-message {
    text-align: center;
    padding: 40px 0;
}

.thanks-message h1 {
    font-size: 38px;
    margin-bottom: 32px;
}

.service-confirmation {
    margin: 32px 0;
}

.selected-service-box {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 4px;
    text-align: left;
    display: inline-block;
    margin: 20px 0;
}

.selected-service-box p {
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.next-steps {
    text-align: left;
    margin: 48px 0;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.next-steps h2 {
    margin-top: 0;
    font-size: 28px;
}

.next-steps ol {
    padding-left: 24px;
    line-height: 1.8;
}

.next-steps li {
    margin-bottom: 12px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: 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: white;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 32px;
}

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

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
}

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

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

.centered-content {
    text-align: center;
}

.centered-content h2,
.centered-content h3 {
    text-align: left;
}

.centered-content p {
    text-align: left;
}

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 40px 32px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.6;
    color: var(--bg-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

.footer-section a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: var(--bg-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

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

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

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

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

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

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

    .article-content {
        font-size: 16px;
    }

    .article-content h2 {
        font-size: 26px;
        margin-top: 40px;
    }

    .service-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-section {
        padding: 24px;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        width: 100%;
    }
}