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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0ea5e9;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background-color: var(--primary-dark);
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid var(--border-color);
}

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 80vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.hero-left {
    flex: 1;
    min-width: 300px;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-left p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-primary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-primary-large:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-left,
.intro-right {
    flex: 1;
    min-width: 300px;
}

.intro-left img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.intro-right h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.value-proposition {
    background-color: var(--bg-light);
    padding: 6rem 2rem;
}

.value-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.value-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.value-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.trust-builder-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.trust-left,
.trust-right {
    flex: 1;
    min-width: 300px;
}

.trust-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.trust-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.trust-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.testimonials {
    background-color: var(--bg-light);
    padding: 6rem 2rem;
}

.testimonials h2 {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.programs-showcase {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.programs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.programs-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.programs-header p {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.program-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.program-split.reverse {
    flex-direction: row-reverse;
}

.program-content {
    flex: 1.5;
    min-width: 300px;
}

.program-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.program-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.program-features {
    list-style: none;
    margin-top: 1.5rem;
}

.program-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-medium);
}

.program-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.program-pricing {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.select-program {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.select-program:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.enrollment-split {
    display: flex;
    align-items: flex-start;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    gap: 4rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.enrollment-left {
    flex: 1;
    min-width: 300px;
}

.enrollment-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.enrollment-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.enrollment-right {
    flex: 1;
    min-width: 300px;
}

.enrollment-form {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.enrollment-form input,
.enrollment-form select,
.enrollment-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.enrollment-form input:focus,
.enrollment-form select:focus,
.enrollment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.final-cta {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.final-cta h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

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

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

.footer-section a {
    color: var(--bg-light);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: var(--bg-light);
    margin-bottom: 0.5rem;
}

.footer-domain {
    font-weight: 600;
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--bg-light);
}

.page-hero {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.story-split,
.philosophy-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.philosophy-split.reverse {
    flex-direction: row-reverse;
}

.story-left,
.story-right,
.philosophy-left,
.philosophy-right {
    flex: 1;
    min-width: 300px;
}

.story-left img,
.philosophy-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.story-right h2,
.philosophy-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-right p,
.philosophy-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.team-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.team-section h2 {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.team-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.member-role {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.values-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.values-left,
.values-right {
    flex: 1;
    min-width: 300px;
}

.values-left img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.values-right h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.impact-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.impact-section h2 {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.impact-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.commitment-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.commitment-left,
.commitment-right {
    flex: 1;
    min-width: 300px;
}

.commitment-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.commitment-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.commitment-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.program-detail-split {
    display: flex;
    align-items: flex-start;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    gap: 4rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.program-detail-split.reverse {
    flex-direction: row-reverse;
}

.program-detail-left {
    flex: 1.5;
    min-width: 300px;
}

.program-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.program-detail-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.program-detail-left h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.program-detail-left p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-medium);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.program-detail-right {
    flex: 1;
    min-width: 300px;
}

.pricing-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    text-align: center;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.price-details {
    margin-bottom: 2rem;
}

.price-details p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.select-program-cta {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.select-program-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.program-detail-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.enrollment-cta-section {
    text-align: center;
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.enrollment-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.enrollment-cta-section p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    align-items: flex-start;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.contact-left {
    flex: 1;
    min-width: 300px;
}

.contact-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-right {
    flex: 1;
    min-width: 300px;
}

.contact-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.faq-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.faq-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.visit-section {
    max-width: 900px;
    margin: 6rem auto;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.visit-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.visit-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.thanks-hero {
    max-width: 900px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    color: white;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-timing {
    font-weight: 600;
    font-size: 1.15rem;
}

.next-steps-split {
    display: flex;
    align-items: flex-start;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.next-steps-left {
    flex: 1;
    min-width: 300px;
}

.next-steps-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.next-steps-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.next-steps-list {
    list-style: none;
}

.next-steps-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.next-steps-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.next-steps-right {
    flex: 1;
    min-width: 300px;
}

.next-steps-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.thanks-testimonial {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.testimonial-block {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    text-align: center;
}

.testimonial-block p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-container {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.legal-container h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
}

.legal-container a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .trust-builder-split,
    .program-split,
    .enrollment-split,
    .story-split,
    .philosophy-split,
    .values-split,
    .commitment-split,
    .program-detail-split,
    .contact-split,
    .next-steps-split {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .program-split.reverse,
    .intro-split.reverse,
    .philosophy-split.reverse,
    .program-detail-split.reverse {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-left h1 {
        font-size: 2.25rem;
    }

    .hero-left p {
        font-size: 1.1rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .intro-right h2,
    .trust-left h2,
    .story-right h2,
    .philosophy-left h2,
    .values-right h2,
    .commitment-left h2,
    .enrollment-left h2,
    .contact-left h2,
    .next-steps-left h2,
    .program-detail-left h2 {
        font-size: 2rem;
    }

    .value-header h2,
    .programs-header h2,
    .testimonials h2,
    .team-section h2,
    .impact-section h2,
    .faq-section h2,
    .enrollment-cta-section h2,
    .visit-content h2,
    .thanks-content h1,
    .final-cta h2 {
        font-size: 2rem;
    }

    .program-content h3 {
        font-size: 1.5rem;
    }

    .price-tag,
    .price-amount,
    .stat-number {
        font-size: 2.5rem;
    }

    .value-grid,
    .testimonial-grid,
    .team-grid,
    .impact-stats,
    .faq-grid {
        gap: 1.5rem;
    }

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

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

    .cookie-table {
        font-size: 0.9rem;
    }

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