/* 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: #2c3e50;
    background-color: #fafafa;
}

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

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

.brand-link {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.nav-menu a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

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

/* Editorial Container - Narrow Centered */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.editorial-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Story Header */
.story-header {
    position: relative;
    height: 480px;
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    margin: -3rem -2rem 2rem -2rem;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
}

.header-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
    color: #ffffff;
}

.story-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 600px;
}

.story-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
}

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

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.header-intro {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
}

/* Editorial Sections */
.intro-block {
    margin-top: 2rem;
}

.opening-line {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.narrative-block,
.insight-section,
.breakthrough-moment,
.value-proposition,
.practical-details,
.looking-forward,
.final-thought,
.visit-info,
.practical-info {
    margin: 2.5rem 0;
}

.section-heading {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.section-heading.centered {
    text-align: center;
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
}

/* Inline Images */
.inline-visual {
    margin: 3rem -2rem;
}

.inline-visual.reverse {
    margin: 3rem -2rem;
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
}

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

/* CTA Elements */
.cta-inline {
    background-color: #f5f5f5;
    padding: 2rem;
    border-left: 4px solid #2c3e50;
    margin: 2.5rem 0;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.cta-link {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: inline-block;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.cta-link:hover {
    color: #1a252f;
    border-bottom-color: #1a252f;
}

/* Floating CTA */
.cta-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.btn-sticky {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Programme Cards */
.programmes-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.programme-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    transition: box-shadow 0.3s;
}

.programme-card.featured {
    border-left: 4px solid #2c3e50;
}

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

.programme-header {
    margin-bottom: 1.5rem;
}

.programme-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.programme-age {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.programme-description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.programme-list {
    margin: 1rem 0 1.5rem 1.5rem;
}

.programme-list li {
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.programme-pricing {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.price-label {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

/* Buttons */
.btn-select,
.btn-submit {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 1rem;
}

.btn-select:hover,
.btn-submit:hover {
    background-color: #1a252f;
}

.btn-primary {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: transparent;
    color: #2c3e50;
    padding: 0.7rem 1.5rem;
    border: 2px solid #2c3e50;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

/* Testimonials */
.testimonial-flow {
    margin: 3rem 0;
}

.testimonial-quote {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #2c3e50;
    font-style: italic;
}

.testimonial-quote p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

/* Forms */
.enrolment-section {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    margin: 3rem 0;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.selected-service-display {
    background-color: #f5f5f5;
    padding: 1rem;
    border-left: 3px solid #2c3e50;
    margin-bottom: 1rem;
}

.selected-service-display p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    margin: 0;
}

#selected-service-name {
    font-weight: 600;
    color: #2c3e50;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

/* Urgency */
.urgency-gentle {
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    padding: 1.5rem;
    margin: 2rem 0;
}

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

/* Contact Information */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-block {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.address-line {
    margin-bottom: 0.3rem;
}

.hours-note,
.contact-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
}

/* FAQ */
.faq-section {
    margin: 2.5rem 0;
}

.faq-item {
    margin: 2rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-answer {
    font-size: 1.05rem;
    color: #555;
}

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

.thanks-header {
    margin: 2rem 0 3rem 0;
}

.success-icon {
    margin: 0 auto 2rem auto;
}

.thanks-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
}

.thanks-content {
    text-align: left;
}

.selected-programme {
    background-color: #f5f5f5;
    padding: 2rem;
    border-left: 4px solid #2ecc71;
    margin: 2rem 0;
}

.programme-name-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.what-next {
    margin: 3rem 0;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    color: #555;
}

.additional-info {
    margin: 3rem 0;
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.info-link {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: inline-block;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.info-link:hover {
    color: #1a252f;
    border-bottom-color: #1a252f;
}

.contact-reminder {
    background-color: #f5f5f5;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #2c3e50;
}

.social-proof {
    margin: 3rem 0;
}

/* Legal Pages */
.legal-page {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
}

.legal-updated {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.legal-section {
    margin: 2.5rem 0;
}

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

.legal-section h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    color: #2c3e50;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

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

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

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

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.9rem;
    color: #bbb;
}

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

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

.footer-section a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #bbb;
    margin: 0;
}

/* Values Section */
.values-section,
.team-approach {
    margin: 2.5rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid #e0e0e0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 0.8rem 2rem;
    }

    .story-header {
        height: 350px;
        margin: -3rem -1rem 2rem -1rem;
    }

    .header-content {
        padding: 2rem;
    }

    .story-title {
        font-size: 2rem;
    }

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

    .editorial-container {
        padding: 2rem 1rem;
    }

    .inline-visual {
        margin: 2rem -1rem;
    }

    .inline-visual.reverse {
        margin: 2rem -1rem;
    }

    .cta-floating {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .btn-sticky {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions button {
        flex: 1;
    }

    .timeline-steps {
        gap: 1.5rem;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

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

    .story-title {
        font-size: 1.7rem;
    }

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

    .section-heading {
        font-size: 1.5rem;
    }

    .opening-line {
        font-size: 1.15rem;
    }

    .programme-title {
        font-size: 1.4rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .cookies-table {
        font-size: 0.8rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.5rem;
    }
}
