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

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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    max-width: 90%;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a365d;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 0.7rem;
    color: #718096;
    padding: 4px 12px;
    background: #edf2f7;
    border-radius: 12px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

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

.nav-links a:hover {
    color: #3182ce;
}

.hero-asymmetric {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 5% 80px 5%;
    position: relative;
    overflow: hidden;
}

.hero-image-offset {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 55%;
    height: 70%;
    background: #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
}

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

.hero-text-block {
    position: relative;
    z-index: 10;
    max-width: 600px;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-left: 5%;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a202c;
}

.hero-text-block p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    background: #3182ce;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background: #2c5282;
    transform: translateY(-2px);
}

.intro-offset {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding: 100px 10%;
    background: #f7fafc;
}

.intro-column-left {
    flex: 1;
    padding-top: 60px;
}

.intro-column-left h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1a202c;
}

.intro-column-left p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.intro-visual-right {
    flex: 1;
    background: #cbd5e0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-40px);
}

.intro-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-irregular {
    padding: 120px 8%;
    background: #ffffff;
    position: relative;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 80px;
    padding-left: 15%;
    color: #1a202c;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
    position: relative;
}

.card-top-left {
    margin-left: 0;
    transform: translateX(-5%);
}

.card-middle-right {
    flex-direction: row-reverse;
    margin-left: auto;
    margin-right: 5%;
    transform: translateX(8%);
}

.card-bottom-left {
    margin-left: 10%;
}

.card-offset-center {
    flex-direction: row-reverse;
    margin-left: 15%;
    transform: translateY(-30px);
}

.card-right-float {
    margin-left: auto;
    margin-right: 0;
    transform: translateX(5%);
}

.card-left-bottom {
    flex-direction: row-reverse;
    margin-left: 5%;
    transform: translateY(-40px);
}

.card-image {
    flex: 1;
    background: #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

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

.card-content {
    flex: 1;
    padding: 30px;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.card-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #4a5568;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3182ce;
    margin-top: 20px;
    margin-bottom: 25px;
}

.select-service {
    background: #48bb78;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background: #38a169;
    transform: translateY(-2px);
}

.enrollment-form-section {
    padding: 100px 10%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-wrapper-asymmetric {
    max-width: 700px;
    margin: 0 0 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.form-intro p {
    font-size: 1rem;
    color: #4a5568;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3182ce;
}

.btn-submit {
    background: #3182ce;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 15px;
}

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

.testimonials-stacked {
    padding: 100px 15%;
    background: #f7fafc;
}

.testimonials-stacked h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a202c;
}

.testimonial-block {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #3182ce;
}

.testimonial-block:nth-child(2) {
    margin-left: 10%;
}

.testimonial-block:nth-child(3) {
    margin-right: 10%;
}

.testimonial-block p {
    font-size: 1.1rem;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 15px;
}

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

.cta-offset-final {
    padding: 120px 10%;
    background: #1a202c;
    position: relative;
}

.cta-content {
    max-width: 600px;
    margin-left: 15%;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: #cbd5e0;
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #1a202c;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background: #edf2f7;
    transform: translateY(-2px);
}

.footer-asymmetric {
    background: #2d3748;
    color: #cbd5e0;
    padding: 80px 10% 30px 10%;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.disclaimer {
    background: #1a202c;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #a0aec0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    font-size: 0.9rem;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: transform 0.3s ease;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-accept {
    background: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background: #38a169;
    transform: translateY(-2px);
}

.btn-reject {
    background: #e53e3e;
    color: #ffffff;
}

.btn-reject:hover {
    background: #c53030;
    transform: translateY(-2px);
}

.about-hero-offset {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 150px 10% 80px 10%;
    background: #f7fafc;
}

.about-text-left {
    flex: 1;
    padding-right: 40px;
}

.about-text-left h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1a202c;
}

.about-text-left p {
    font-size: 1.1rem;
    color: #4a5568;
}

.about-image-right {
    flex: 1;
    background: #cbd5e0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(40px) rotate(-2deg);
}

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

.story-section {
    padding: 100px 20%;
    background: #ffffff;
}

.story-content h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: #1a202c;
}

.story-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.values-asymmetric {
    padding: 100px 10%;
    background: #edf2f7;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.value-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 500px;
}

.value-card.offset-left {
    margin-left: 5%;
}

.value-card.offset-right {
    margin-left: auto;
    margin-right: 10%;
}

.value-card.offset-center {
    margin-left: 25%;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.value-card p {
    font-size: 1rem;
    color: #4a5568;
}

.methodology-section {
    padding: 100px 15%;
    background: #ffffff;
}

.methodology-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a202c;
}

.method-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.method-item {
    flex: 1 1 calc(50% - 20px);
    background: #f7fafc;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #3182ce;
}

.method-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.method-item p {
    font-size: 1rem;
    color: #4a5568;
}

.team-callout {
    padding: 100px 20%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.team-content h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
}

.team-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-about {
    padding: 80px 10%;
    background: #1a202c;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: #ffffff;
}

.services-hero {
    padding: 150px 10% 60px 10%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.programmes-detailed {
    padding: 80px 8%;
    background: #ffffff;
}

.programme-block {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 100px;
    padding: 50px;
    background: #f7fafc;
    border-radius: 16px;
}

.programme-block.left-align {
    margin-left: 0;
}

.programme-block.right-align {
    flex-direction: row-reverse;
    margin-left: auto;
    margin-right: 0;
}

.programme-visual {
    flex: 1;
    background: #cbd5e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.programme-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programme-info {
    flex: 1;
}

.programme-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.price-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 20px;
}

.programme-info p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #4a5568;
}

.programme-info h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a202c;
}

.programme-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.programme-info ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #4a5568;
}

.programme-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.contact-hero {
    padding: 150px 10% 60px 10%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-details-section {
    padding: 100px 10%;
    background: #ffffff;
}

.contact-info-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.info-block {
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.info-block:nth-child(1) {
    margin-left: 5%;
    max-width: 500px;
}

.info-block:nth-child(2) {
    margin-left: auto;
    margin-right: 10%;
    max-width: 500px;
}

.info-block:nth-child(3) {
    margin-left: 20%;
    max-width: 500px;
}

.info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.info-block p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.contact-note {
    padding: 60px 15%;
    background: #edf2f7;
    text-align: center;
}

.contact-note p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.contact-note a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
}

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

.thanks-section {
    padding: 200px 10% 150px 10%;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    background: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a202c;
}

.thanks-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.programme-confirmation {
    font-weight: 700;
    color: #3182ce;
    font-size: 1.2rem;
}

.legal-content {
    padding: 150px 20% 80px 20%;
    background: #ffffff;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1a202c;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d3748;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    color: #4a5568;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #3182ce;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background: #edf2f7;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookie-table th {
    font-weight: 600;
    color: #2d3748;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 140px 5% 60px 5%;
    }

    .hero-image-offset {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: rotate(0);
        margin-bottom: 40px;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
    }

    .intro-visual-right {
        transform: translateY(0);
    }

    .service-card {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
        transform: none;
    }

    .card-middle-right,
    .card-offset-center,
    .card-left-bottom {
        flex-direction: column;
    }

    .about-hero-offset {
        flex-direction: column;
    }

    .programme-block {
        flex-direction: column;
    }

    .programme-block.right-align {
        flex-direction: column;
    }

    .contact-info-asymmetric .info-block {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .section-title-offset {
        padding-left: 0;
        font-size: 2rem;
    }

    .story-section,
    .legal-content {
        padding: 80px 8%;
    }

    .method-item {
        flex: 1 1 100%;
    }
}