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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

/* Ad Notice */
.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.813rem;
    border-bottom: 1px solid #dee2e6;
}

/* Navigation - Minimal Style for Editorial Archetype */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.938rem;
    transition: color 0.2s;
}

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

/* Main Content - Editorial Style */
.main-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.article-header {
    margin-bottom: 48px;
    text-align: left;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 400;
}

/* Text Sections */
.text-section {
    margin-bottom: 40px;
}

.text-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1a202c;
    margin-bottom: 20px;
    margin-top: 48px;
}

.text-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #2d3748;
    margin-bottom: 16px;
    margin-top: 32px;
}

.text-section p {
    margin-bottom: 20px;
    font-size: 1.063rem;
    line-height: 1.8;
}

.text-section ul,
.text-section ol {
    margin-bottom: 20px;
    margin-left: 24px;
}

.text-section li {
    margin-bottom: 12px;
    font-size: 1.063rem;
    line-height: 1.7;
}

/* Inline Images */
.inline-image {
    margin: 48px 0;
    width: 100%;
}

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

.inline-image-small {
    margin: 40px auto;
    max-width: 600px;
}

.inline-image-small img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

/* Citations */
.citation {
    color: #3182ce;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.citation:hover {
    border-bottom-color: #3182ce;
}

/* Blockquotes and Testimonials */
blockquote.testimonial {
    margin: 48px 0;
    padding: 32px;
    background-color: #f7fafc;
    border-left: 4px solid #4299e1;
    font-style: italic;
}

blockquote.testimonial p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 12px;
}

blockquote.testimonial cite {
    font-style: normal;
    font-size: 0.938rem;
    color: #718096;
}

/* Insight Box */
.insight-box {
    background-color: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 6px;
    padding: 32px;
    margin: 40px 0;
}

.insight-box h3 {
    font-size: 1.25rem;
    color: #742a2a;
    margin-bottom: 20px;
}

.insight-box ul {
    margin-left: 0;
    list-style: none;
}

.insight-box li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.insight-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #742a2a;
    font-weight: bold;
}

/* CTAs */
.cta-inline {
    margin: 48px 0;
    padding: 32px;
    background-color: #edf2f7;
    border-radius: 6px;
    text-align: center;
}

.cta-inline p {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.cta-section {
    margin: 56px 0;
    padding: 48px 32px;
    background-color: #1a202c;
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 16px;
}

.cta-section p {
    color: #cbd5e0;
    margin-bottom: 24px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-select,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #3182ce;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #e2e8f0;
    color: #2d3748;
    margin-left: 12px;
}

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

.btn-select {
    background-color: #48bb78;
    color: #ffffff;
    width: 100%;
    margin-top: 16px;
}

.btn-select:hover {
    background-color: #38a169;
}

.btn-submit {
    background-color: #3182ce;
    color: #ffffff;
    width: 100%;
    font-size: 1.063rem;
    padding: 16px 32px;
}

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

/* Services Preview */
.services-preview {
    margin: 56px 0;
}

.service-card {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.375rem;
    color: #1a202c;
    margin-bottom: 16px;
    margin-top: 0;
}

.service-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 20px;
    margin-bottom: 16px;
}

/* Services Detail Page */
.services-detail {
    margin-top: 48px;
}

.service-detail {
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 2px solid #e2e8f0;
}

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

.service-detail h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 16px;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 24px;
}

.service-description h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-top: 32px;
    margin-bottom: 16px;
}

.service-description ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.service-description li {
    margin-bottom: 10px;
}

/* Form Section */
.form-section {
    margin: 64px 0;
    padding: 48px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    margin-top: 0;
}

.form-section p {
    color: #4a5568;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 0.938rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.form-group input[readonly] {
    background-color: #e2e8f0;
    cursor: not-allowed;
}

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

/* Contact Page */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.contact-item h3 {
    font-size: 1.125rem;
    color: #2d3748;
    margin-bottom: 12px;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.7;
}

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

.thanks-details {
    background-color: #ebf8ff;
    border-left: 4px solid #3182ce;
    padding: 24px;
    margin: 32px 0;
}

.thanks-details .highlight {
    font-size: 1.125rem;
    color: #2c5aa0;
}

.next-steps {
    margin-left: 24px;
    margin-top: 24px;
}

.next-steps li {
    margin-bottom: 16px;
    padding-left: 8px;
}

.contact-reminder {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 6px;
    margin-top: 40px;
}

.contact-reminder h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

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

/* Legal Content */
.legal-content {
    max-width: 900px;
}

.legal-content .text-section {
    margin-bottom: 48px;
}

/* Footer */
.site-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 64px 24px 32px;
    margin-top: 80px;
}

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

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

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

.footer-section p {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

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

.references li {
    margin-bottom: 16px;
    color: #cbd5e0;
    line-height: 1.6;
}

.references a {
    color: #63b3ed;
    text-decoration: none;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 0;
    border-top: 1px solid #2d3748;
    border-bottom: 1px solid #2d3748;
    margin-bottom: 32px;
}

.disclaimer p {
    font-size: 0.875rem;
    color: #a0aec0;
    line-height: 1.7;
}

.copyright {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.875rem;
    color: #718096;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.938rem;
    line-height: 1.6;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.938rem;
}

.btn-cookie {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #38a169;
}

.btn-cookie-alt {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-cookie-alt:hover {
    background-color: #2d3748;
}

/* Final Thought */
.final-thought {
    font-size: 1.125rem;
    font-style: italic;
    color: #4a5568;
    margin-top: 56px;
    padding: 32px;
    background-color: #f7fafc;
    border-left: 4px solid #3182ce;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav-links {
        gap: 20px;
    }

    .main-content {
        padding: 32px 20px;
    }

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

    .lead {
        font-size: 1.125rem;
    }

    .text-section h2 {
        font-size: 1.5rem;
    }

    .form-section {
        padding: 32px 24px;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 12px;
    }
}

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

    .service-card {
        padding: 24px;
    }

    .form-section {
        padding: 24px 16px;
    }

    .cta-inline {
        padding: 24px 16px;
    }
}