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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0ea5e9;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --background-light: #f9fafb;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --accent-color: #f59e0b;
}

html {
    scroll-behavior: smooth;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover,
.nav-right a.active {
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.625rem 1.25rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s;
}

.nav-cta:hover {
    background-color: var(--primary-dark);
    color: white !important;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 4rem 5%;
    gap: 4rem;
}

.hero-left {
    flex: 1;
}

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

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

.hero-stats {
    display: flex;
    gap: 3rem;
    margin: 2.5rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.hero-right {
    flex: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

.btn-secondary-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.split-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 5rem 5%;
}

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

.split-left,
.split-right {
    flex: 1;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.programs-section {
    background-color: var(--background-light);
    padding: 5rem 5%;
}

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

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

.section-header-center p {
    font-size: 1.125rem;
    color: var(--text-medium);
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.program-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 320px;
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.program-card.featured {
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.program-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.program-duration {
    font-size: 0.875rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 1rem;
}

.program-body {
    flex-grow: 1;
}

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

.program-highlights {
    list-style: none;
    margin: 1.5rem 0;
}

.program-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

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

.program-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.program-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select-program {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-program:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.testimonial-split {
    padding: 5rem 5%;
    background-color: var(--background-white);
}

.testimonial-content {
    position: relative;
}

.quote-mark {
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -2rem;
}

blockquote {
    font-size: 1.375rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.enroll-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 5%;
}

.enroll-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.enroll-left {
    flex: 1;
    color: white;
}

.enroll-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.enroll-left p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.enroll-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.enroll-right {
    flex: 1;
}

.enrollment-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.outcomes-section {
    background-color: var(--background-light);
}

.outcomes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.outcome-stat {
    flex: 1 1 calc(50% - 1rem);
    display: flex;
    flex-direction: column;
}

.outcome-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.outcome-label {
    font-size: 0.9375rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.footer-split {
    background-color: var(--text-dark);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    padding: 1.25rem 5%;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-cta-text {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-sticky {
    background-color: var(--primary-color);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 2px solid var(--border-color);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-medium);
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.btn-reject:hover {
    background-color: var(--background-light);
}

.page-hero-split {
    padding: 5rem 5%;
}

.page-hero-split .hero-left {
    max-width: 900px;
}

.page-hero-split h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.story-section {
    background-color: var(--background-white);
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-section p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 5%;
    background-color: var(--background-light);
}

.section-title-center {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

.team-section {
    background-color: var(--background-white);
}

.experience-list {
    list-style: none;
    margin-top: 2rem;
}

.experience-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.approach-section {
    padding: 5rem 5%;
    background-color: var(--background-light);
}

.approach-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.approach-item {
    margin-bottom: 3rem;
}

.approach-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.approach-left {
    flex: 1.5;
}

.approach-right {
    flex: 1;
}

.approach-split h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.approach-split p {
    color: var(--text-medium);
    line-height: 1.7;
}

.approach-image {
    width: 100%;
    border-radius: 0.5rem;
}

.stats-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 5%;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.stat-large .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-large .stat-label {
    font-size: 1rem;
    margin-top: 0.75rem;
    opacity: 0.9;
}

.cta-section-split {
    background-color: var(--background-white);
}

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

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

.page-hero-simple {
    text-align: center;
    padding: 4rem 5% 2rem;
    background-color: var(--background-light);
}

.page-hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.program-detail-section {
    padding: 4rem 5%;
}

.program-detail-section.alt-bg {
    background-color: var(--background-light);
}

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

.program-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.price-box {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.popular-tag {
    background-color: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.program-curriculum {
    max-width: 1200px;
    margin: 4rem auto 0;
}

.program-curriculum h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.curriculum-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.curriculum-module {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.program-detail-section.alt-bg .curriculum-module {
    background-color: white;
}

.curriculum-module h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.curriculum-module ul {
    list-style: none;
}

.curriculum-module ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.curriculum-module ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.program-curriculum .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.comparison-section {
    padding: 5rem 5%;
    background-color: var(--background-white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: white;
}

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

.comparison-table th {
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background-color: var(--background-light);
}

.comparison-table .highlight-row {
    background-color: rgba(37, 99, 235, 0.05);
}

.cta-section-centered {
    text-align: center;
    padding: 5rem 5%;
    background-color: var(--background-light);
}

.cta-section-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section-centered p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    padding: 4rem 5%;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.info-block p {
    color: var(--text-medium);
    line-height: 1.8;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-image {
    width: 100%;
    border-radius: 0.5rem;
}

.faq-section {
    padding: 5rem 5%;
    background-color: var(--background-light);
}

.faq-container {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.faq-split {
    display: flex;
    gap: 3rem;
}

.faq-column {
    flex: 1;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.quick-contact-section {
    padding: 4rem 5%;
    background-color: var(--background-white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.quick-contact-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.thanks-section {
    padding: 5rem 5%;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--success-color);
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-section h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

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

.confirmation-details {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.confirmation-details p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.small-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

.while-you-wait {
    padding: 5rem 5%;
    background-color: var(--background-light);
}

.wait-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wait-container h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
}

.wait-grid {
    display: flex;
    gap: 2rem;
}

.wait-card {
    flex: 1;
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.wait-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wait-card h3 {
    font-size: 1.25rem;
    margin: 1.5rem 1.5rem 0.75rem;
}

.wait-card p {
    color: var(--text-medium);
    margin: 0 1.5rem 1rem;
    line-height: 1.6;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin: 0 1.5rem 1.5rem;
}

.btn-link:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 3rem 5%;
    background-color: var(--background-light);
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.updated-date {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

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

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.legal-content strong {
    color: var(--text-dark);
}

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

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

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

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

@media (max-width: 1024px) {
    .hero-split,
    .split-container,
    .enroll-container,
    .approach-split,
    .faq-split,
    .wait-grid {
        flex-direction: column;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .approach-split.reverse {
        flex-direction: column;
    }

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

    .nav-right {
        gap: 1rem;
    }

    .programs-grid {
        flex-direction: column;
    }

    .program-card {
        flex: 1 1 100%;
    }

    .steps-grid {
        flex-direction: column;
    }

    .footer-main {
        flex-wrap: wrap;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
    }

    .section-header-center h2,
    .section-title-center {
        font-size: 2rem;
    }

    .quick-contact-actions {
        flex-direction: column;
    }

    .legal-container {
        padding: 2rem 1.5rem;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

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

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

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

    .outcome-stat {
        flex: 1 1 100%;
    }

    .value-card,
    .curriculum-module {
        flex: 1 1 100%;
    }
}
