* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fafafa;
    font-size: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

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

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

.btn-cookie-accept,
.btn-cookie-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-cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

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

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    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;
}

.hero-story,
.about-story,
.services-story,
.contact-story,
.thanks-story,
.legal-story {
    min-height: 60vh;
}

.story-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.story-header,
.page-header,
.thanks-header {
    margin-bottom: 3rem;
    text-align: center;
}

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

.lead-text {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

.story-image {
    margin: 3rem 0;
    width: 100%;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.narrative-block {
    margin: 4rem 0;
}

.narrative-block h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 700;
}

.narrative-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
}

.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

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

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

.btn-primary:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.25);
}

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

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

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

.btn-secondary:hover {
    background: #d5d5d5;
}

.btn-outline {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

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

.insight-section {
    margin: 5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-content h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.insight-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.insight-image {
    width: 100%;
}

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.services-reveal {
    margin: 5rem 0;
    padding: 3rem 0;
}

.services-reveal h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.services-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
}

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

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.featured {
    border: 2px solid #27ae60;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f4 100%);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
    margin: 1.5rem 0;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.service-card.featured .btn-select-service {
    background: #27ae60;
}

.service-card.featured .btn-select-service:hover {
    background: #229954;
}

.testimonial-inline {
    margin: 5rem 0;
    padding: 2.5rem;
    background: #f8f9fa;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: #444;
    line-height: 1.7;
}

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

.enrollment-section {
    margin: 5rem 0;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.enrollment-section h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.enrollment-section > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #555;
    font-size: 1.05rem;
}

.enrollment-form {
    max-width: 550px;
    margin: 0 auto;
}

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

.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;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    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: #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.3);
}

.why-now {
    margin: 5rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
    border-radius: 8px;
}

.why-now h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.why-now p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.methodology {
    margin: 5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-text h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.method-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.method-image {
    width: 100%;
}

.method-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.final-cta {
    margin: 5rem 0;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 8px;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-centered {
    text-align: center;
    margin: 2.5rem 0;
}

.philosophy-section {
    margin: 4rem 0;
}

.philosophy-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.point {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

.point h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.point p {
    font-size: 1.05rem;
    color: #555;
}

.instructor-highlight,
.approach-details,
.commitment-section,
.next-steps {
    margin: 4rem 0;
}

.instructor-highlight h3,
.commitment-section h2,
.next-steps h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.instructor-highlight p,
.commitment-section p,
.next-steps p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.approach-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-text h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.approach-image {
    width: 100%;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

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

.service-card-detailed {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-card-detailed.featured {
    border: 3px solid #27ae60;
}

.service-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: #f8f9fa;
}

.service-header h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    font-weight: 700;
    flex: 1;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 900;
    color: #27ae60;
}

.service-image {
    width: 100%;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-content ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #444;
    font-size: 1.05rem;
}

.service-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.programme-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.programme-details p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.enrollment-info {
    margin: 5rem 0;
    text-align: center;
}

.enrollment-info h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.enrollment-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.info-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.info-block a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

.contact-text h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.visit-section,
.next-steps-contact {
    margin: 4rem 0;
}

.visit-section h3,
.next-steps-contact h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.visit-section p,
.next-steps-contact p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.thanks-content {
    margin: 3rem 0;
}

.thanks-content h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.next-steps-list {
    list-style: none;
    margin: 2rem 0;
}

.next-steps-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #444;
}

.next-steps-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-confirmation {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 100%);
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: center;
}

.confirmation-message {
    font-size: 1.15rem;
    color: #27ae60;
    font-weight: 600;
}

.preparation-section {
    margin: 4rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.preparation-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.preparation-section p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.preparation-section ul {
    list-style: none;
    margin: 1.5rem 0;
}

.preparation-section ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #444;
    font-size: 1.05rem;
}

.preparation-section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 1.5rem;
    line-height: 1;
}

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

.thanks-cta h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-section p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.7;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li {
    margin: 0.8rem 0;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-column ul li {
    margin: 0.6rem 0;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .story-container {
        padding: 4rem 2rem;
    }

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

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

    .nav-links {
        gap: 2.5rem;
    }

    .insight-section {
        flex-direction: row;
        align-items: center;
    }

    .insight-content {
        flex: 1;
    }

    .insight-image {
        flex: 1;
    }

    .methodology {
        flex-direction: row;
        align-items: center;
    }

    .method-text {
        flex: 1;
    }

    .method-image {
        flex: 1;
    }

    .approach-details {
        flex-direction: row;
        align-items: center;
    }

    .approach-text {
        flex: 1;
    }

    .approach-image {
        flex: 1;
    }

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

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

    .footer-column {
        flex: 1;
    }

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

    .contact-info {
        flex: 1;
    }

    .contact-text {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

    .cookie-content p {
        flex: 1;
    }
}

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

    .brand {
        font-size: 1.2rem;
    }

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price-large {
        font-size: 2rem;
    }
}