/* 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: #fafbfc;
}

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

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

a:hover {
    color: #1d4ed8;
}

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #475569;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Editorial Content Layout */
.editorial-content {
    max-width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
}

.text-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Article Hero */
.article-hero {
    padding: 4rem 0 3rem;
    background-color: #f8fafc;
}

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
    margin-bottom: 3rem;
}

.hero-text-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1.5rem;
}

.hero-image-inline {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-image-inline img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Page Header */
.page-header-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
}

.page-header-narrow h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

/* Narrative Blocks */
.narrative-block {
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.narrative-block h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.narrative-block p {
    margin-bottom: 1.5rem;
}

.narrative-block p strong {
    font-weight: 600;
    color: #1e293b;
}

/* Inline CTAs */
.inline-cta-soft {
    padding: 2.5rem 0;
    text-align: center;
}

.link-arrow {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2563eb;
    display: inline-block;
    transition: transform 0.2s ease;
}

.link-arrow:hover {
    transform: translateX(4px);
}

/* Insight Section */
.insight-section {
    padding: 3rem 0;
    background-color: #f1f5f9;
}

.insight-section h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.insight-section p {
    margin-bottom: 1.5rem;
}

/* Image Embed */
.image-embed {
    margin: 2.5rem 0;
}

.image-embed img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Principle Block */
.principle-block {
    padding: 3rem 0;
}

.principle-block h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.principle-block h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.principle-block p {
    margin-bottom: 1.5rem;
}

/* Styled Lists */
.styled-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.styled-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.styled-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 600;
}

/* Testimonials */
.testimonial-inline {
    padding: 3rem 0;
    max-width: 680px;
    margin: 0 auto;
}

.testimonial-inline blockquote {
    background-color: #f8fafc;
    border-left: 4px solid #2563eb;
    padding: 2rem;
    margin: 0 1.5rem;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 1rem;
}

/* Services Preview */
.services-preview {
    padding: 3rem 0;
    background-color: #f8fafc;
}

.services-preview h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.service-cards-stacked {
    max-width: 680px;
    margin: 2.5rem auto 0;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1.5rem 0;
}

/* Story Continuation */
.story-continuation {
    padding: 3rem 0;
}

.story-continuation h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.story-continuation p {
    margin-bottom: 1.5rem;
}

/* Enrollment Block */
.enrollment-block {
    padding: 3rem 0;
    background-color: #f1f5f9;
}

.enrollment-block h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.enrollment-block p {
    margin-bottom: 2rem;
}

/* Forms */
.form-inline-editorial {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    color: #ffffff;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #2563eb;
    padding: 0.75rem 1.5rem;
    border: 2px solid #2563eb;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-right: 1rem;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: #ffffff;
}

/* Closing Thought */
.closing-thought {
    padding: 3rem 0;
    background-color: #ffffff;
}

.emphasis-text {
    font-size: 1.35rem;
    line-height: 1.5;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

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

.service-detail h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 2rem;
}

.cta-block {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.enrollment-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.enrollment-section h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-info {
    padding: 2rem 0;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.contact-item p {
    color: #475569;
    line-height: 1.6;
}

.contact-item a {
    color: #2563eb;
    font-weight: 500;
}

.note {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Thanks Page */
.thanks-content {
    padding: 4rem 1.5rem;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.confirmation-box {
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: left;
}

.confirmation-box h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 1rem;
}

.confirmation-box .styled-list li:before {
    color: #16a34a;
}

/* Legal Pages */
.legal-content {
    padding: 3rem 1.5rem;
}

.legal-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.updated-date {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #334155;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.7;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer-minimal {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 2.5rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.footer-content p {
    font-size: 0.9rem;
    color: #94a3b8;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    color: #e2e8f0;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    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: #475569;
    color: #ffffff;
}

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

/* Responsive Design */
@media (min-width: 768px) {
    .hero-text-narrow h1 {
        font-size: 3rem;
    }

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

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

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

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

    .service-card {
        padding: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 0.75rem;
    }

    .hero-text-narrow h1 {
        font-size: 1.75rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}