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

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

.cookie-banner.show {
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

/* Editorial Container - Main Layout */
.editorial-container {
    background-color: #ffffff;
}

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

/* Hero Section */
.hero-editorial {
    padding: 4rem 1.5rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    opacity: 0.95;
    font-weight: 400;
}

/* Page Header */
.page-header {
    padding: 3.5rem 1.5rem 2.5rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c3e50;
}

.header-intro {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Editorial Sections */
.intro-story,
.problem-reveal,
.insight-section,
.story-continuation,
.about-story,
.mission-section,
.approach-section,
.values-section,
.team-section,
.impact-section,
.services-intro,
.enrollment-info,
.contact-info-section,
.faq-section,
.location-section {
    padding: 3rem 1.5rem;
}

.intro-story {
    background-color: #ffffff;
}

.problem-reveal {
    background-color: #f8f9fa;
}

.insight-section {
    background-color: #ffffff;
}

.story-continuation {
    background-color: #f8f9fa;
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.narrow-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.narrow-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.narrow-content h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
    color: #34495e;
}

/* Image Break */
.image-break {
    padding: 4rem 0;
    background-color: #ffffff;
}

.content-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
    font-style: italic;
}

/* Visual Break - Split Layout */
.visual-break {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.split-visual {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-left img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.visual-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.benefit-list {
    list-style-position: outside;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-inline {
    border-left: 4px solid #667eea;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: #34495e;
}

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

.testimonial-section {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.testimonial-large {
    border-left: 5px solid #27ae60;
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: #2c3e50;
}

.testimonial-large cite {
    display: block;
    margin-top: 1.2rem;
    font-style: normal;
    font-size: 1rem;
    color: #555;
    font-weight: 600;
}

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

.cta-link {
    color: #667eea;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #667eea;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

.inline-cta-large {
    margin: 3rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-secondary-large,
.btn-submit {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #667eea;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background-color: #667eea;
    color: #ffffff;
}

.btn-primary-large {
    background-color: #27ae60;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.btn-secondary-large {
    background-color: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary-large:hover {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-submit {
    background-color: #667eea;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 400px;
}

.btn-submit:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Programs Preview */
.programs-preview {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.section-intro {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.program-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.program-card.featured {
    background-color: #fff5e6;
    border-color: #667eea;
    position: relative;
}

.program-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #2c3e50;
}

.program-card p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.program-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #666;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 0.5rem;
}

/* Services Page - Detailed Programs */
.program-detailed {
    padding: 3rem 1.5rem;
}

.program-full {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid #e0e0e0;
}

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

.featured-program {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.program-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.program-header h2 {
    margin: 0;
}

.price-badge {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    align-self: flex-start;
}

.featured-badge {
    background-color: #667eea;
}

.popular-tag {
    display: inline-block;
    background-color: #ff6b6b;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    align-self: flex-start;
}

.program-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #34495e;
}

.program-meta {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.featured-program .program-meta {
    background-color: #ffffff;
}

.program-meta span {
    font-size: 0.95rem;
    color: #555;
}

.program-outcomes {
    margin: 2rem 0;
}

.program-outcomes h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.program-outcomes ul {
    list-style-position: outside;
    padding-left: 1.5rem;
}

.program-outcomes li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.urgency-section h2 {
    color: #ffffff;
}

.urgency-section p {
    color: #ffffff;
    opacity: 0.95;
}

/* Contact Form */
.contact-section {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.enrollment-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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: #667eea;
}

.form-group textarea {
    resize: vertical;
}

/* Final Thought */
.final-thought {
    padding: 4rem 1.5rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.closing-statement {
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: center;
    font-weight: 500;
    color: #ffffff;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.5);
}

/* About Page Specific */
.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    color: #667eea;
    margin-top: 0;
}

/* CTA Section */
.cta-section,
.cta-contact {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
    text-align: center;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

/* Contact Page */
.contact-detail {
    margin-bottom: 3rem;
}

.contact-detail h3 {
    color: #667eea;
    margin-top: 0;
}

.contact-detail a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.detail-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

/* FAQ */
.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 1.5rem;
    min-height: 60vh;
}

.thanks-intro {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
}

.confirmation-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.next-steps {
    list-style-position: outside;
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

.next-steps li {
    margin-bottom: 2rem;
}

.next-steps strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.next-steps p {
    margin: 0;
    color: #555;
}

.selected-program {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 5px solid #27ae60;
}

.selected-program h3 {
    margin-top: 0;
    color: #27ae60;
}

.thanks-cta {
    margin-top: 4rem;
    text-align: center;
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #2c3e50;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #34495e;
}

.legal-section ul {
    list-style-position: outside;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.last-updated {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

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

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

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

    .split-visual {
        flex-direction: row;
        gap: 3rem;
    }

    .visual-left,
    .visual-right {
        flex: 1;
    }

    .program-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .program-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .inline-cta-large {
        flex-direction: row;
        justify-content: center;
    }

    .button-group {
        flex-direction: row;
        justify-content: center;
    }

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

    .footer-section {
        flex: 1;
    }

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

    .featured-program {
        margin-left: 0;
        margin-right: 0;
    }

    .program-meta {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .program-meta span {
        flex: 1 1 auto;
    }
}

@media (min-width: 1024px) {
    .program-cards {
        gap: 2.5rem;
    }

    .program-card {
        flex: 1 1 calc(33.333% - 1.7rem);
    }

    .nav-container {
        padding: 0 3rem;
    }
}

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

    .hero-editorial h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
