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

:root {
    --primary-color: #1a4d6f;
    --secondary-color: #2a7ba5;
    --accent-color: #f39c12;
    --text-color: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

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);
    font-size: 18px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

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

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

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 5px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-light);
}

.main-content {
    min-height: 60vh;
}

.editorial-layout {
    background-color: var(--bg-white);
}

.story-flow {
    padding-top: 40px;
}

.hero-editorial {
    padding: 60px 0;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: 800;
}

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

.story-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
}

.content-section {
    padding: 40px 0;
}

.content-section h2 {
    font-size: 32px;
    line-height: 1.4;
    color: var(--text-color);
    margin: 50px 0 25px 0;
    font-weight: 700;
}

.content-section h3 {
    font-size: 24px;
    line-height: 1.4;
    color: var(--text-color);
    margin: 35px 0 20px 0;
    font-weight: 600;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.content-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
}

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

.cta-text {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

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

.benefit-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.benefit-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.7;
}

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

.testimonial-inline {
    background-color: var(--bg-light);
    padding: 35px;
    margin: 40px 0;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.insight-box {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
}

.insight-box h3 {
    color: var(--bg-white);
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 20px;
}

.insight-box p {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.citation-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.inline-link-cta {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    margin: 30px 0;
}

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

.services-preview {
    background-color: var(--bg-light);
    padding: 60px 0;
    margin: 60px 0;
}

.section-intro {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin: 25px 0;
}

.btn-select-service {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}

.form-section {
    background-color: var(--bg-white);
    padding: 60px 0;
}

.contact-form {
    margin-top: 40px;
}

.selected-service-display {
    background-color: var(--bg-light);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 6px;
    border-left: 4px solid var(--success-color);
}

.selected-service-display p {
    margin-bottom: 8px;
    font-size: 17px;
}

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

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

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

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

.btn-submit {
    background-color: var(--success-color);
    color: var(--bg-white);
    padding: 14px 36px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover:not(:disabled) {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    opacity: 0.6;
}

.final-section {
    padding: 60px 0;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
}

.btn-sticky {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.footer {
    background-color: var(--text-color);
    color: var(--bg-white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.references-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.references-list {
    list-style: none;
    padding-left: 0;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.references-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.references-list a:hover {
    color: var(--bg-white);
    text-decoration: underline;
}

.disclaimer {
    margin-top: 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.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;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.about-hero,
.services-hero,
.contact-hero,
.thanks-hero {
    padding: 60px 0 40px;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1,
.thanks-hero h1 {
    font-size: 42px;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.service-detail-card {
    background-color: var(--bg-white);
    padding: 40px;
    margin-bottom: 50px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.service-detail-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.service-price-large {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent-color);
    margin: 20px 0 30px;
}

.service-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
}

.process-section {
    background-color: var(--bg-light);
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
}

.process-list {
    padding-left: 20px;
    margin-top: 25px;
}

.process-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

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

.contact-text-section {
    margin: 50px 0;
}

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

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

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

.thanks-confirmation {
    background-color: var(--bg-light);
    padding: 40px;
    margin: 40px 0;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

.thanks-text-section {
    margin: 50px 0;
}

.thanks-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.thanks-final-section {
    background-color: var(--bg-light);
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
}

.legal-content {
    padding: 40px 0 80px;
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    color: var(--text-color);
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

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

.legal-section li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .hero-editorial h1,
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-hero h1 {
        font-size: 32px;
    }

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

    .content-section h2 {
        font-size: 26px;
    }

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .btn-sticky {
        padding: 12px 24px;
        font-size: 15px;
    }

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

    .thanks-links a {
        text-align: center;
    }
}