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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2a6ba8;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

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

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.editorial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.editorial-article {
    max-width: 100%;
    margin: 0 auto;
}

.article-header {
    position: relative;
    margin-bottom: 50px;
}

.header-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-title-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    text-align: center;
}

.article-header.simple .article-title-wrapper {
    padding-top: 40px;
}

.article-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.article-subtitle {
    font-size: 20px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

.article-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

.text-block {
    margin-bottom: 50px;
}

.lead-paragraph {
    font-size: 21px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.text-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.text-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 20px;
    line-height: 1.3;
}

.text-block h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.text-block h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 12px;
}

.text-block ul,
.text-block ol {
    margin: 20px 0 20px 30px;
}

.text-block li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.citation {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: var(--accent-color);
}

.inline-image-figure {
    margin: 50px 0;
}

.inline-image-figure.wide {
    margin: 60px -50px;
}

.inline-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.inline-image-figure figcaption {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

.highlight-section {
    background-color: var(--bg-light);
    padding: 40px;
    border-left: 4px solid var(--secondary-color);
    margin: 50px 0;
}

.services-preview {
    margin: 60px 0;
}

.services-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.service-card-inline {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.service-card-inline.reverse {
    flex-direction: row-reverse;
}

.service-card-content {
    flex: 1;
}

.service-card-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.service-card-image {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 4px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.additional-services {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.service-item-compact {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.service-item-compact h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-item-compact p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.service-price-compact {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.cta-section-inline {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 50px;
    margin: 60px 0;
    border-radius: 4px;
    text-align: center;
}

.cta-section-inline h2 {
    color: var(--bg-white);
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section-inline p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-text-link {
    display: inline-block;
    font-size: 18px;
    color: var(--bg-white);
    text-decoration: none;
    padding: 15px 35px;
    background-color: var(--accent-color);
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-text-link:hover {
    background-color: #d35400;
}

.form-container-editorial {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 4px;
    margin-top: 30px;
}

.form-container-editorial h3 {
    color: var(--text-dark);
    font-size: 24px;
    margin-bottom: 25px;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    padding: 15px 35px;
    font-size: 17px;
    font-weight: 600;
    color: var(--bg-white);
    background-color: var(--accent-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #d35400;
}

.disclaimer-section {
    background-color: #fff9e6;
    padding: 30px;
    border-left: 4px solid #f39c12;
    margin: 60px 0 40px;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

.services-detailed {
    margin: 40px 0;
}

.service-detail-block {
    margin-bottom: 70px;
}

.service-detail-block.alternate {
    background-color: var(--bg-light);
    padding: 40px;
    margin-left: -40px;
    margin-right: -40px;
    border-radius: 4px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.service-detail-header h2 {
    font-size: 32px;
    margin: 0;
}

.service-detail-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-image {
    margin: 25px 0;
    background-color: #bdc3c7;
    border-radius: 4px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-features li {
    font-size: 17px;
    padding: 10px 0 10px 30px;
    position: relative;
}

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

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
}

.contact-detail h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.email-display {
    background-color: var(--bg-light);
    padding: 15px 20px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    display: inline-block;
}

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

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

.faq-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-container {
    max-width: 600px;
    margin: 80px auto;
    text-align: center;
    padding: 60px 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.thanks-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-service-confirm {
    font-size: 17px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.thanks-next-steps {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 4px;
}

.thanks-next-steps h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.steps-list {
    margin-left: 20px;
}

.steps-list li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    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);
}

.legal-content {
    max-width: 900px;
}

.legal-content .text-block {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 22px;
    margin: 25px 0 15px;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    line-height: 1.8;
}

.cookie-table h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 25px 0 10px;
}

.cookie-table p {
    font-size: 16px;
    margin-bottom: 8px;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.references-list {
    margin-left: 20px;
}

.references-list li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--bg-white);
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 30px;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .article-title {
        font-size: 36px;
    }

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

    .article-content {
        padding: 0 20px 60px;
    }

    .service-card-inline {
        flex-direction: column;
    }

    .service-card-inline.reverse {
        flex-direction: column;
    }

    .inline-image-figure.wide {
        margin: 60px 0;
    }

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

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

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

    .btn-cookie {
        width: 100%;
    }

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

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

    .service-detail-block.alternate {
        margin-left: -20px;
        margin-right: -20px;
        padding: 30px 20px;
    }
}