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

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    background-color: #3498db;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #2980b9;
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.btn-cookie.btn-secondary: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;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #3498db;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Editorial Container - Main Layout */
.editorial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Editorial */
.hero-editorial {
    padding: 4rem 0 3rem;
}

.hero-text-centered {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.hero-image {
    margin: 0 -1.5rem;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
}

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 3rem;
}

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

/* Narrow Content - Editorial Style */
.narrow-content {
    max-width: 680px;
    margin: 0 auto;
}

/* Editorial Sections */
.editorial-intro,
.editorial-content {
    padding: 3rem 0;
}

.editorial-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.editorial-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.editorial-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.drop-cap::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 0.85;
    margin: 0.1rem 0.15rem 0 0;
    color: #3498db;
}

/* Inline CTA */
.inline-cta {
    display: inline-block;
    color: #3498db;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 1rem;
    transition: transform 0.2s ease;
}

.inline-cta:hover {
    transform: translateX(5px);
}

/* Editorial Image Break */
.editorial-image-break {
    margin: 4rem -1.5rem;
    text-align: center;
}

.editorial-image-break img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 0.9rem;
    color: #777777;
    font-style: italic;
    padding: 0 1.5rem;
}

/* Testimonials Inline */
.testimonial-inline {
    border-left: 4px solid #3498db;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 0.5rem;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    color: #888888;
    font-style: normal;
}

/* Programs Showcase */
.programs-showcase {
    padding: 3rem 0;
}

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

.program-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.program-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.program-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.program-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.program-details p {
    margin-bottom: 1rem;
    color: #555555;
}

.program-duration {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 1rem;
}

.program-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1.2rem;
    z-index: 999;
    display: none;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.sticky-cta.show {
    display: block;
}

.sticky-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.sticky-content p {
    color: #ffffff;
    margin: 0;
    font-size: 1rem;
}

.btn-sticky {
    background-color: #3498db;
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.btn-sticky:hover {
    background-color: #2980b9;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin: 4rem -1.5rem;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-grid blockquote {
    background-color: #ffffff;
    padding: 1.8rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-grid blockquote p {
    font-size: 1.05rem;
    color: #555555;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-grid cite {
    font-size: 0.9rem;
    color: #888888;
    font-style: normal;
    font-weight: 600;
}

/* Enrollment Section */
.enrollment-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    margin: 4rem -1.5rem;
}

.enrollment-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid #e0e0e0;
}

.form-notice {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.form-notice.success {
    background-color: #d4edda;
    border-left-color: #28a745;
}

.form-notice p {
    margin: 0;
    color: #856404;
}

.form-notice.success p {
    color: #155724;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    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 textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    display: inline-block;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

/* Editorial List */
.editorial-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
}

.editorial-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.editorial-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

/* Final Thought */
.final-thought {
    padding: 3rem 0;
    border-top: 1px solid #e0e0e0;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-item p {
    line-height: 1.8;
    color: #555555;
    margin-bottom: 0.5rem;
}

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

.map-placeholder {
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

.map-caption {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #777777;
    background-color: #f8f9fa;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    color: #555555;
    line-height: 1.7;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-message ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.thanks-message li {
    margin-bottom: 0.5rem;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.thanks-additional {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: left;
}

.thanks-additional h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.resource-links {
    list-style: none;
    padding-left: 0;
}

.resource-links li {
    margin-bottom: 0.8rem;
}

.resource-links a {
    color: #3498db;
    font-weight: 500;
}

/* Legal Pages */
.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-page ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #888888;
    font-style: italic;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

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

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #445566;
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .contact-grid {
        flex-direction: row;
        gap: 4rem;
    }

    .contact-info,
    .contact-map {
        flex: 1;
    }

    .testimonial-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-grid blockquote {
        flex: 1;
        min-width: 280px;
    }

    .sticky-content {
        flex-direction: row;
    }

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

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

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 1rem 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 2rem;
    }

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

    .enrollment-form {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 2rem;
    }

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

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

    .program-price {
        font-size: 1.5rem;
    }
}