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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #4a90b8;
    --text-color: #2c3e50;
    --light-gray: #f4f6f8;
    --border-color: #d4dce5;
    --white: #ffffff;
    --dark-gray: #5a6c7d;
}

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

.ad-disclosure {
    background-color: var(--light-gray);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--border-color);
    font-family: 'Arial', sans-serif;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.article-hero {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.article-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.subtitle {
    font-size: 20px;
    color: var(--dark-gray);
    font-style: italic;
    font-weight: 300;
}

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

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

.article-body h2 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-top: 55px;
    margin-bottom: 25px;
    font-weight: 400;
}

.article-body h3 {
    font-size: 24px;
    line-height: 1.4;
    color: var(--secondary-color);
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 400;
}

.article-body p {
    margin-bottom: 25px;
}

.inline-image {
    margin: 45px 0;
    background-color: var(--light-gray);
}

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

.inline-image figcaption {
    padding: 15px 20px;
    font-size: 15px;
    color: var(--dark-gray);
    font-style: italic;
    text-align: center;
    background-color: var(--light-gray);
}

.insight-block {
    background-color: var(--light-gray);
    padding: 35px 40px;
    margin: 45px 0;
    border-left: 4px solid var(--accent-color);
}

.insight-block h3 {
    margin-top: 0;
    margin-bottom: 18px;
}

.insight-block p {
    margin-bottom: 0;
}

.testimonial-inline {
    margin: 45px 0;
    padding-left: 40px;
    border-left: 3px solid var(--border-color);
}

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

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: var(--dark-gray);
    font-style: normal;
}

.cta-inline {
    margin: 45px 0;
    padding: 30px 35px;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-inline p {
    margin-bottom: 18px;
    font-size: 19px;
}

.cta-link {
    color: var(--white);
    text-decoration: underline;
    font-size: 18px;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.cta-link:hover {
    opacity: 0.8;
}

.services-narrative {
    margin-top: 50px;
}

.service-item {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-item h2,
.service-item h3 {
    margin-top: 0;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0 20px;
    font-family: 'Arial', sans-serif;
}

.service-select {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.form-section {
    margin-top: 60px;
    padding: 45px 40px;
    background-color: var(--light-gray);
    border-left: 4px solid var(--accent-color);
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: var(--light-gray);
    cursor: not-allowed;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    margin-top: 10px;
}

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

.disclaimer-section {
    margin-top: 60px;
    padding-top: 35px;
    border-top: 1px solid var(--border-color);
}

.disclaimer {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-gray);
    font-style: italic;
}

.editorial-list {
    margin: 25px 0 25px 40px;
    line-height: 1.9;
}

.editorial-list li {
    margin-bottom: 12px;
}

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

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

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

.contact-detail p {
    margin-bottom: 8px;
}

.contact-guidance,
.response-expectations,
.service-areas {
    margin: 50px 0;
}

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-details {
    text-align: left;
    margin-top: 40px;
}

.thanks-navigation {
    margin-top: 50px;
}

.legal-page .article-body h2 {
    font-size: 28px;
    margin-top: 45px;
}

.legal-page .article-body h3 {
    font-size: 22px;
}

.legal-page .article-body p {
    margin-bottom: 20px;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
    font-family: 'Arial', sans-serif;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Arial', sans-serif;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px 30px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
    min-width: 300px;
    font-family: 'Arial', sans-serif;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

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

.cookie-btn:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-links {
        gap: 20px;
    }

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

    .article-body {
        font-size: 17px;
    }

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

    .article-body h2 {
        font-size: 28px;
    }

    .testimonial-inline {
        padding-left: 25px;
    }

    .insight-block,
    .form-section {
        padding: 25px 20px;
    }

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

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

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

@media (max-width: 480px) {
    .editorial-content {
        padding: 40px 20px 60px;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-banner {
        padding: 20px 15px;
    }
}