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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3a6d;
}

/* Navigation - Floating Minimal */
.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 1.2rem 0;
}

.nav-container {
    max-width: 72rem;
    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: #1a1a1a;
    letter-spacing: -0.02em;
}

.brand:hover {
    color: #2c5aa0;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #4a4a4a;
}

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

/* Editorial Layout - Narrow Centered */
.editorial-layout {
    min-height: calc(100vh - 200px);
    padding: 2rem 1.5rem;
}

.content-narrow {
    max-width: 42rem;
    margin: 0 auto;
}

/* Typography - Article Style */
.headline-large {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.subheadline {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    color: #2a2a2a;
}

h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.35rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 3.5rem;
}

.hero-image {
    margin: 2.5rem 0 3rem;
    border-radius: 4px;
}

/* Story Sections */
.story-section {
    margin-bottom: 4rem;
}

/* Inline Images - Editorial Style */
.inline-image {
    margin: 2.5rem auto;
    border-radius: 4px;
}

/* Blockquotes - Testimonials */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 1.75rem 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2c5aa0;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
}

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

/* CTAs - Multiple Styles */
.inline-cta {
    margin: 2.5rem 0;
}

.inline-cta.centered {
    text-align: center;
}

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

.link-arrow:hover {
    transform: translateX(4px);
    color: #1a3a6d;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c5aa0;
    color: #ffffff;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-select-service {
    display: inline-block;
    padding: 0.8rem 1.75rem;
    background-color: #ffffff;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2c5aa0;
    color: #ffffff;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem;
    text-align: center;
    z-index: 999;
    display: none;
}

.btn-sticky {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background-color: #2c5aa0;
    color: #ffffff;
    font-weight: 500;
    border-radius: 6px;
    font-size: 1rem;
}

.btn-sticky:hover {
    background-color: #1a3a6d;
    color: #ffffff;
}

/* Feature Highlights - Service Cards */
.feature-highlight {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #fafbfc;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
}

.feature-detail {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.pricing-reveal {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5aa0;
    margin: 1.5rem 0 1rem;
}

/* Urgency Block */
.urgency-block {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: #fff9e6;
    border-left: 4px solid #f5a623;
    border-radius: 4px;
}

.urgency-text {
    margin: 0;
    font-size: 1.05rem;
    color: #3a3a3a;
}

/* Forms - Editorial Style */
.form-editorial {
    margin: 2.5rem 0;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Page Headers */
.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

/* Program Blocks */
.program-block {
    margin: 3rem 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e8e8e8;
}

.program-block:last-child {
    border-bottom: none;
}

.program-duration {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.program-outcomes {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.program-outcomes li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.program-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5aa0;
    margin: 2rem 0 1.25rem;
}

/* Contact Page */
.contact-info {
    margin: 2.5rem 0;
}

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

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

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Thanks Page */
.thanks-container {
    padding: 3rem 0;
}

.thanks-container h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.next-steps {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Policy Pages */
.policy-section {
    margin: 2rem 0;
}

.policy-date {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.policy-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Footer */
.footer-minimal {
    border-top: 1px solid #e8e8e8;
    padding: 2.5rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.footer-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: #666;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #2c5aa0;
    color: #ffffff;
}

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

.btn-cookie-alt {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-alt:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    padding: 3rem 0;
}

.closing-thought {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .headline-large {
        font-size: 3rem;
    }

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

    .subheadline {
        font-size: 1.4rem;
    }

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

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

    .cookie-actions {
        flex-shrink: 0;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .sticky-cta {
        display: block;
    }

    .nav-links {
        gap: 2.5rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .headline-large {
        font-size: 3.5rem;
    }

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

    h2 {
        font-size: 2rem;
    }

    .editorial-layout {
        padding: 3rem 1.5rem;
    }
}