/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

/* Ad Disclosure Banner */
.ad-disclosure {
    background-color: #f0f0f0;
    color: #555;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #ddd;
}

/* Navigation - Editorial Style */
.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Editorial Container */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* Hero Section - Article Style */
.article-hero {
    margin-bottom: 48px;
}

.hero-image-wrapper {
    margin-bottom: 32px;
    background-color: #e8e8e8;
    overflow: hidden;
    border-radius: 4px;
}

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

.hero-title {
    font-size: 2.75rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: 'Georgia', serif;
}

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 0;
}

/* Page Header */
.page-header {
    margin-bottom: 40px;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 24px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-intro {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
}

/* Content Flow */
.content-flow {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

.content-flow h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-flow h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-flow p {
    margin-bottom: 24px;
}

.content-flow ul {
    margin-bottom: 24px;
    padding-left: 32px;
}

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

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #2c2c2c;
    font-weight: 400;
    margin-bottom: 32px;
}

/* Inline Image Blocks */
.inline-image-block {
    margin: 40px 0;
    background-color: #f5f5f5;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
}

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

.inline-image-block figcaption {
    padding: 16px 20px;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    background-color: #f5f5f5;
}

/* Blockquote */
.expert-quote {
    border-left: 4px solid #1a1a1a;
    padding-left: 24px;
    margin: 40px 0;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #2c2c2c;
    font-style: italic;
}

.expert-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

/* Service Cards - Editorial Style */
.service-cards-editorial {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 32px;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service:hover {
    background-color: #333;
}

/* CTA Links */
.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.cta-link, .cta-link-secondary {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-link {
    background-color: #1a1a1a;
    color: #fff;
}

.cta-link:hover {
    background-color: #333;
}

.cta-link-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.cta-link-secondary:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* Form Section */
.form-section {
    background-color: #f9f9f9;
    padding: 40px;
    margin: 48px 0;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

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

.selected-service-display {
    background-color: #fff;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    border-left: 4px solid #1a1a1a;
}

.editorial-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-btn {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* Contact Info Block */
.contact-info-block {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin: 32px 0;
}

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

.contact-detail h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.email-display {
    color: #4a4a4a;
    font-weight: 600;
}

/* Thanks Page */
.thanks-content {
    text-align: left;
}

.thanks-message {
    background-color: #f0f8f0;
    padding: 32px;
    border-radius: 4px;
    border-left: 4px solid #2a7a2a;
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    margin: 24px 0;
}

.selected-service-highlight {
    font-size: 1.25rem;
    color: #1a1a1a;
}

.next-steps h2 {
    margin-top: 40px;
}

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

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

.next-steps-list a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    transition: opacity 0.2s ease;
}

.next-steps-list a:hover {
    opacity: 0.7;
}

/* Legal Pages */
.legal-page .content-flow {
    font-size: 1rem;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin-top: 40px;
}

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

/* Footer */
.footer-editorial {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 40px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    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: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #999;
}

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

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

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #999;
    margin: 0;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: #777;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #e0e0e0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 24px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-content p a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-btn.accept {
    background-color: #1a1a1a;
    color: #fff;
}

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

.cookie-btn.reject {
    background-color: #f0f0f0;
    color: #4a4a4a;
}

.cookie-btn.reject:hover {
    background-color: #e0e0e0;
}

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

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

    .editorial-container {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-intro {
        font-size: 1.125rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-flow {
        font-size: 1rem;
    }

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

    .lead-text {
        font-size: 1.125rem;
    }

    .service-card {
        padding: 24px;
    }

    .form-section {
        padding: 24px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}