/* 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: #2c3e50;
    background-color: #fafafa;
}

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

/* Navigation */
.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.nav-links a:hover {
    color: #2c3e50;
}

/* Editorial Container - Narrow, Centered Layout */
.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 30px;
    background-color: #ffffff;
}

/* Article Hero */
.article-hero {
    margin-bottom: 50px;
    text-align: left;
}

.article-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.hero-image {
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 4px;
}

/* Article Content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-paragraph {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #343a40;
}

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

.article-content h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.article-content h3 {
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.article-content h4 {
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #495057;
    font-weight: 600;
}

.article-content ul,
.article-content ol {
    margin-left: 30px;
    margin-bottom: 25px;
}

.article-content li {
    margin-bottom: 10px;
}

/* Inline Images */
.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
}

/* Inline CTA */
.inline-cta {
    margin: 35px 0;
    padding: 20px 0;
}

.text-link-cta {
    font-size: 1.1rem;
    color: #0066cc;
    text-decoration: none;
    border-bottom: 2px solid #0066cc;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.text-link-cta:hover {
    color: #004499;
    border-color: #004499;
}

/* Blockquote / Testimonial Inline */
blockquote.testimonial-inline {
    margin: 40px 0;
    padding: 25px 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #495057;
    font-style: italic;
}

blockquote.testimonial-inline p {
    margin-bottom: 15px;
    color: #495057;
}

blockquote.testimonial-inline cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    color: #6c757d;
}

/* CTA Card Inline */
.cta-card-inline {
    margin: 50px 0;
    padding: 35px;
    background-color: #f1f3f5;
    border-radius: 6px;
}

.cta-card-inline h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.cta-card-inline p {
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1a252f;
}

.btn-service {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

.btn-service:hover {
    background-color: #0052a3;
}

.btn-submit {
    display: inline-block;
    padding: 14px 40px;
    background-color: #28a745;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

.service-card {
    padding: 30px;
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    position: relative;
}

.service-card.featured {
    border-color: #0066cc;
    background-color: #f8fbff;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #0066cc;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.service-description {
    color: #6c757d;
    margin-bottom: 20px;
}

.service-features {
    margin: 20px 0;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

/* Contact Form Section */
.contact-form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

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

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Disclaimer */
.disclaimer-section {
    margin: 50px 0;
    padding: 25px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-section p {
    font-size: 0.9rem;
    color: #856404;
    margin-bottom: 0;
}

/* Contact Page Specific */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.contact-card {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-card h2 {
    margin-top: 0;
    font-size: 1.3rem;
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: #e9ecef;
    padding: 10px 15px;
    border-radius: 4px;
    display: inline-block;
    margin: 10px 0;
}

.email-note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

.opening-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 15px;
}

.document-list {
    margin-left: 25px;
}

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

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

.thanks-card {
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 40px;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    text-align: center;
    margin-bottom: 20px;
}

.thanks-card h2 {
    margin-top: 0;
    text-align: center;
}

.next-steps {
    margin: 30px 0;
}

.next-steps ol {
    margin-left: 20px;
}

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

.service-confirmation {
    background-color: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.contact-reminder {
    margin-top: 30px;
    padding: 20px;
    background-color: #e7f3ff;
    border-radius: 4px;
}

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

.link-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.info-link-card {
    padding: 20px;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.info-link-card:hover {
    border-color: #0066cc;
    background-color: #f8fbff;
}

.info-link-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-link-card p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.preparation-tips {
    margin: 40px 0;
    padding: 30px;
    background-color: #e7f3ff;
    border-radius: 6px;
}

.preparation-tips h2 {
    margin-top: 0;
}

.preparation-tips ul {
    margin-left: 25px;
}

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

.legal-page h2 {
    margin-top: 40px;
}

.last-updated {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 40px 20px;
    margin-top: 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.9rem;
    color: #adb5bd;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #495057;
    text-align: center;
    color: #adb5bd;
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #343a40;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-content a {
    color: #66b3ff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #28a745;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5a6268;
}

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

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

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

    .article-hero h1 {
        font-size: 2rem;
    }

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

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

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

    .article-content h3 {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 20px;
    }

    .contact-form-section {
        padding: 25px 20px;
    }

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

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

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .article-hero h1 {
        font-size: 1.6rem;
    }

    .ad-disclosure {
        font-size: 0.7rem;
        padding: 6px 15px;
    }

    .service-price {
        font-size: 1.5rem;
    }
}