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

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

h1, h2, h3, h4 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ad Notice */
.ad-notice {
    background-color: #f3f4f6;
    color: #6b7280;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
    border-bottom: 1px solid #e5e7eb;
}

/* Navigation - Minimal Style for Editorial Archetype */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    color: #1a1a1a;
}

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

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: #4b5563;
    transition: color 0.2s ease;
}

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

/* Editorial Container - Centered, Narrow Layout */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

/* Article Header */
.article-header {
    margin-bottom: 50px;
    text-align: center;
}

.article-header h1 {
    font-size: 42px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.article-lead {
    font-size: 22px;
    line-height: 1.6;
    color: #4b5563;
    font-style: italic;
}

/* Text Flow - Story-Driven Content */
.text-flow {
    margin-top: 40px;
}

.text-flow p {
    margin-bottom: 28px;
}

.text-flow h2 {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 24px;
}

.text-flow h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.text-flow ul {
    margin: 24px 0 24px 30px;
    list-style-type: disc;
}

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

/* Inline Images - Editorial Style */
.inline-hero {
    margin: 50px -30px 50px -30px;
    background-color: #e5e7eb;
}

.inline-hero img {
    width: 100%;
}

.inline-image {
    margin: 40px 0;
    background-color: #e5e7eb;
}

.inline-image img {
    width: 100%;
}

/* Insight Box */
.insight-box {
    background-color: #f0f9ff;
    border-left: 4px solid #2563eb;
    padding: 28px 32px;
    margin: 40px 0;
}

.insight-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 0;
}

.insight-box p {
    margin-bottom: 0;
    font-size: 17px;
}

/* Numbered Principles */
.numbered-principle {
    display: flex;
    gap: 24px;
    margin: 32px 0;
}

.principle-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.principle-content h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 8px;
}

.principle-content p {
    margin-bottom: 0;
    font-size: 17px;
}

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

.btn-text {
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    color: #2563eb;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.btn-text:hover {
    color: #1d4ed8;
}

/* Services Preview */
.services-preview {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #e5e7eb;
}

.services-preview h2 {
    margin-top: 0;
}

.service-card-inline {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
    margin: 32px 0;
}

.service-card-inline h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 16px;
}

.service-card-inline p {
    margin-bottom: 16px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    font-family: 'Arial', sans-serif;
    margin: 24px 0 20px 0;
}

.btn-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.btn-service:hover {
    background-color: #1d4ed8;
    color: #ffffff;
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 48px 0;
    padding: 36px 40px;
    background-color: #f9fafb;
    border-left: 4px solid #6b7280;
}

.testimonial-inline blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-inline p {
    margin-bottom: 16px;
}

.testimonial-inline cite {
    font-size: 16px;
    font-style: normal;
    color: #6b7280;
}

/* CTA Box */
.cta-box {
    background-color: #1e293b;
    color: #ffffff;
    padding: 48px 40px;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0;
}

.cta-box h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 28px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #1e293b;
}

/* Form Section */
.form-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e5e7eb;
}

.form-section h2 {
    margin-top: 0;
    margin-bottom: 12px;
    text-align: center;
}

.form-section > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
}

.editorial-form {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 40px;
    margin-top: 32px;
}

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

.form-group label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: 'Georgia', serif;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

/* Disclaimer */
.disclaimer {
    margin-top: 60px;
    padding: 28px 32px;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    font-size: 15px;
    line-height: 1.6;
}

.disclaimer p {
    margin-bottom: 0;
}

/* Service Detail Pages */
.service-detail {
    margin: 48px 0;
    padding-bottom: 48px;
    border-bottom: 1px solid #e5e7eb;
}

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

.service-header {
    margin-bottom: 24px;
}

.service-header h2 {
    margin-top: 0;
    margin-bottom: 12px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
    font-family: 'Arial', sans-serif;
}

.service-image {
    margin: 28px 0;
    background-color: #e5e7eb;
}

.service-image img {
    width: 100%;
}

/* Contact Page */
.contact-info-block {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 40px;
    margin: 32px 0;
}

.contact-info-block h2 {
    margin-top: 0;
    margin-bottom: 16px;
}

.contact-detail {
    margin: 28px 0;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #6b7280;
    font-weight: 600;
}

.contact-detail p {
    margin-bottom: 0;
}

.spacer-section {
    height: 40px;
}

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

/* Legal Pages */
.legal-page h2 {
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    margin-bottom: 10px;
}

.legal-update {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 15px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 16px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

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

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

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

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

.footer-section a {
    color: #cbd5e1;
    font-size: 15px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid #334155;
    text-align: center;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 24px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-cookie.accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

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

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

    .nav-links {
        gap: 20px;
    }

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

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

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

    .text-flow h2 {
        font-size: 26px;
        margin-top: 48px;
    }

    .inline-hero {
        margin-left: -20px;
        margin-right: -20px;
    }

    .numbered-principle {
        flex-direction: column;
        gap: 16px;
    }

    .service-card-inline,
    .editorial-form,
    .contact-info-block {
        padding: 24px;
    }

    .cta-box {
        padding: 32px 24px;
    }

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

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

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

    .btn-cookie {
        width: 100%;
    }
}

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

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

    .article-lead {
        font-size: 18px;
    }

    .text-flow h2 {
        font-size: 24px;
    }

    .price {
        font-size: 24px;
    }

    .service-price {
        font-size: 22px;
    }
}