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

:root {
    --primary-color: #1a4d8f;
    --secondary-color: #2d6bb5;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0f1419;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-white);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--accent-color);
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-offset {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    padding: 3rem 5%;
    position: relative;
}

.hero-image-block {
    width: 90%;
    margin-left: auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

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

.hero-text-offset {
    background-color: var(--text-white);
    padding: 3rem;
    margin-top: -120px;
    margin-right: auto;
    width: 85%;
    max-width: 700px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    z-index: 10;
    position: relative;
}

.hero-text-offset h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-text-offset p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary, .cta-secondary, .cta-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary {
    background-color: var(--accent-color);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.cta-primary:hover {
    background-color: #ff8559;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-white);
}

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.cta-large {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

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

.stat-blocks-irregular {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 4rem 5%;
    background-color: var(--bg-light);
    gap: 2rem;
}

.stat-card {
    background-color: var(--text-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    min-width: 200px;
    flex: 1;
}

.stat-card.offset-left {
    margin-top: 40px;
}

.stat-card.offset-right {
    margin-top: -20px;
}

.stat-card.offset-center {
    margin-top: 60px;
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.insight-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    gap: 3rem;
}

.insight-text-wide {
    width: 80%;
    max-width: 900px;
}

.insight-text-wide h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.insight-text-wide p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.insight-visual-offset {
    width: 70%;
    margin-left: auto;
    margin-top: -80px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.insight-visual-offset img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.approach-staggered {
    padding: 5rem 5%;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.approach-header-offset {
    width: 60%;
    margin-left: 10%;
    margin-bottom: 3rem;
}

.approach-header-offset h2 {
    color: var(--text-white);
}

.approach-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.approach-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.approach-item.large {
    flex: 1 1 100%;
    margin-left: 0;
}

.approach-item.small {
    flex: 1 1 calc(40% - 1rem);
    margin-top: 40px;
}

.approach-item.medium {
    flex: 1 1 calc(48% - 1rem);
}

.approach-item.medium-offset {
    flex: 1 1 calc(48% - 1rem);
    margin-top: -60px;
}

.approach-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.approach-item p {
    color: rgba(255, 255, 255, 0.85);
}

.programs-showcase {
    padding: 6rem 5%;
    background-color: var(--text-white);
}

.section-intro-offset {
    width: 75%;
    max-width: 800px;
    margin-bottom: 4rem;
    margin-left: 8%;
}

.section-intro-offset h2 {
    color: var(--primary-color);
}

.section-intro-offset p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.program-cards-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.program-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.program-card.offset-top {
    margin-left: 0;
}

.program-card.offset-bottom {
    margin-left: auto;
    width: 90%;
}

.program-card.offset-mid {
    margin-left: 5%;
    width: 92%;
}

.program-card.offset-right-far {
    margin-left: auto;
    width: 88%;
}

.program-card.offset-left-low {
    margin-left: 3%;
    width: 95%;
}

.program-image {
    width: 100%;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-details {
    padding: 2rem;
}

.program-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-details p {
    color: var(--text-light);
}

.program-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: var(--text-white);
    border-radius: 6px;
}

.program-meta .duration {
    color: var(--text-light);
    font-weight: 500;
}

.program-meta .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.testimonial-overlap {
    position: relative;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-bg-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: var(--bg-light);
    z-index: 1;
}

.testimonial-content-offset {
    position: relative;
    z-index: 10;
    background-color: var(--text-white);
    padding: 3rem;
    width: 70%;
    max-width: 700px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    margin-left: 5%;
}

.testimonial-content-offset blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-content-offset cite {
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.testimonial-image-offset {
    position: relative;
    z-index: 10;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-left: auto;
    margin-right: 10%;
    margin-top: -100px;
}

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

.enrollment-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    background-color: var(--bg-dark);
    color: var(--text-white);
    gap: 3rem;
}

.enrollment-visual {
    width: 85%;
    margin-left: auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.enrollment-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.enrollment-form-offset {
    background-color: var(--text-white);
    color: var(--text-dark);
    padding: 3rem;
    width: 90%;
    max-width: 600px;
    margin-top: -200px;
    margin-left: 5%;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    z-index: 10;
    position: relative;
}

.enrollment-form-offset h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.enrollment-form-offset p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.cta-submit {
    padding: 1.125rem;
    background-color: var(--accent-color);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-submit:hover {
    background-color: #ff8559;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.why-now-staggered {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.why-header-offset {
    width: 60%;
    margin-left: 10%;
    margin-bottom: 3rem;
}

.why-header-offset h2 {
    color: var(--primary-color);
}

.why-content-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.why-block {
    background-color: var(--text-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
}

.why-block.left-offset {
    margin-top: -30px;
}

.why-block.right-offset {
    margin-top: 50px;
}

.why-block.center-low {
    margin-top: 20px;
}

.why-block h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-block p {
    color: var(--text-light);
}

.learning-environment-offset {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    gap: 3rem;
}

.environment-text {
    width: 80%;
    max-width: 800px;
}

.environment-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.environment-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.environment-features {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.environment-features li {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.environment-image-overlap {
    width: 75%;
    margin-left: auto;
    margin-top: -100px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.environment-image-overlap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.instructor-showcase-asymmetric {
    padding: 5rem 5%;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.instructor-showcase-asymmetric h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.instructor-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.instructor-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.instructor-card.small-card {
    flex: 1 1 calc(30% - 1.5rem);
    min-width: 250px;
    margin-top: 40px;
}

.instructor-card.large-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
}

.instructor-card.medium-card {
    flex: 1 1 calc(35% - 1.5rem);
    min-width: 280px;
    margin-top: -30px;
}

.instructor-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

.final-cta-overlap {
    position: relative;
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-color: var(--bg-light);
    z-index: 1;
}

.final-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    background-color: var(--text-white);
    padding: 4rem 3rem;
    max-width: 700px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
}

.final-cta-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

.footer-main-offset {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-staggered {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col.offset-down {
    margin-top: 2rem;
}

.footer-col h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--text-white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background-color: #ff8559;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    color: var(--text-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

.btn-accept:hover {
    background-color: #ff8559;
}

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

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

.about-hero-offset {
    display: flex;
    flex-direction: column;
    padding: 4rem 5%;
    gap: 3rem;
}

.about-hero-text {
    width: 75%;
    max-width: 800px;
}

.about-hero-text h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-hero-image-overlap {
    width: 80%;
    margin-left: auto;
    margin-top: -60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-hero-image-overlap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.origin-story-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    gap: 3rem;
    background-color: var(--bg-light);
}

.origin-text-wide {
    width: 85%;
    max-width: 900px;
}

.origin-text-wide h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.origin-text-wide p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.origin-visual-offset {
    width: 50%;
    margin-left: auto;
    margin-top: -80px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.origin-visual-offset img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.philosophy-staggered {
    padding: 5rem 5%;
}

.philosophy-staggered h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-blocks-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-item {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.philosophy-item.large-offset {
    flex: 1 1 100%;
    margin-left: 5%;
}

.philosophy-item.small-top {
    flex: 1 1 calc(45% - 1rem);
    margin-top: -40px;
}

.philosophy-item.medium-bottom {
    flex: 1 1 calc(50% - 1rem);
    margin-top: 60px;
}

.philosophy-item.medium-right {
    flex: 1 1 calc(48% - 1rem);
    margin-left: auto;
}

.philosophy-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: var(--text-light);
}

.approach-detail-offset {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    gap: 3rem;
}

.approach-image-left {
    width: 70%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.approach-image-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.approach-text-overlap {
    background-color: var(--text-white);
    padding: 3rem;
    width: 80%;
    max-width: 700px;
    margin-left: auto;
    margin-top: -120px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    z-index: 10;
    position: relative;
}

.approach-text-overlap h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.approach-text-overlap p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.impact-numbers-asymmetric {
    padding: 5rem 5%;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.impact-numbers-asymmetric h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.impact-grid-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.impact-stat {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    min-width: 200px;
    flex: 1 1 calc(25% - 1.5rem);
}

.impact-stat.offset-top-left {
    margin-top: -30px;
}

.impact-stat.offset-center {
    margin-top: 40px;
}

.impact-stat.offset-bottom-right {
    margin-top: 20px;
}

.impact-stat.offset-mid-left {
    margin-top: -50px;
}

.impact-stat h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.impact-stat p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.student-outcomes-overlap {
    position: relative;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.outcomes-bg-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background-color: var(--bg-light);
    z-index: 1;
}

.outcomes-content-offset {
    position: relative;
    z-index: 10;
    background-color: var(--text-white);
    padding: 3rem;
    width: 75%;
    max-width: 700px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    margin-left: 8%;
}

.outcomes-content-offset h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.outcomes-content-offset p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.outcomes-visual-staggered {
    position: relative;
    z-index: 10;
    width: 65%;
    margin-left: auto;
    margin-right: 5%;
    margin-top: -100px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.outcomes-visual-staggered img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

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

.values-header-offset {
    width: 70%;
    margin-left: 10%;
    margin-bottom: 3rem;
}

.values-header-offset h2 {
    color: var(--primary-color);
}

.values-content-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-block {
    background-color: var(--text-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
}

.value-block.left-high {
    margin-top: -40px;
}

.value-block.right-low {
    margin-top: 60px;
}

.value-block.center-mid {
    margin-top: 10px;
}

.value-block h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-block p {
    color: var(--text-light);
}

.team-ethos-offset {
    padding: 5rem 5%;
}

.ethos-text-wide {
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
}

.ethos-text-wide h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.ethos-text-wide p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.future-vision-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    background-color: var(--bg-light);
    gap: 3rem;
}

.vision-image-overlap {
    width: 60%;
    margin-left: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vision-image-overlap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.vision-text-offset {
    background-color: var(--text-white);
    padding: 3rem;
    width: 85%;
    max-width: 700px;
    margin-top: -180px;
    margin-left: 5%;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    z-index: 10;
    position: relative;
}

.vision-text-offset h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.vision-text-offset p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.services-hero-offset {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.services-hero-content {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.program-detail-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 4rem 5%;
    gap: 3rem;
}

.program-detail-asymmetric.reverse {
    background-color: var(--bg-light);
}

.program-visual-offset {
    width: 75%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.program-detail-asymmetric.reverse .program-visual-offset {
    margin-left: auto;
}

.program-visual-offset img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.program-info-overlap {
    background-color: var(--text-white);
    padding: 3rem;
    width: 85%;
    max-width: 800px;
    margin-top: -100px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    z-index: 10;
    position: relative;
}

.program-detail-asymmetric .program-info-overlap {
    margin-left: auto;
    margin-right: 5%;
}

.program-detail-asymmetric.reverse .program-info-overlap {
    margin-left: 5%;
    margin-right: auto;
}

.program-info-overlap h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.program-duration {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.program-description h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.program-description ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.program-description li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.program-comparison-asymmetric {
    padding: 5rem 5%;
}

.program-comparison-asymmetric h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.comparison-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

.comparison-card.highlight-card {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.comparison-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.comparison-card.highlight-card h3 {
    color: var(--accent-color);
}

.comparison-card ul {
    padding-left: 1.5rem;
}

.comparison-card li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.comparison-card.highlight-card li,
.comparison-card.highlight-card p {
    color: rgba(255, 255, 255, 0.9);
}

.enrollment-path-offset {
    padding: 5rem 5%;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.enrollment-content-wide {
    max-width: 1000px;
    margin: 0 auto;
}

.enrollment-content-wide h2 {
    text-align: center;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.enrollment-content-wide > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
}

.enrollment-steps-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.step-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    border-top: 4px solid var(--accent-color);
}

.step-card.offset-left {
    margin-top: -20px;
}

.step-card.offset-center {
    margin-top: 30px;
}

.step-card.offset-right {
    margin-top: -10px;
}

.step-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.85);
}

.enrollment-content-wide .cta-large {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

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

.contact-hero-text {
    width: 75%;
    max-width: 700px;
}

.contact-hero-text h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-info-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 4rem 5%;
    gap: 3rem;
}

.contact-details-offset {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 80%;
    max-width: 900px;
}

.contact-block {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-block.offset-down {
    margin-left: 10%;
    width: 90%;
}

.contact-block.offset-right {
    margin-left: auto;
    width: 85%;
}

.contact-block h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-address, .contact-email {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-email a {
    color: var(--accent-color);
    font-weight: 600;
}

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

.hours-list {
    margin: 1rem 0;
}

.hours-list p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hours-list strong {
    color: var(--primary-color);
}

.contact-visual-overlap {
    width: 70%;
    margin-left: auto;
    margin-top: -150px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-visual-overlap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.contact-reasons-staggered {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.contact-reasons-staggered h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.reasons-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.reason-card {
    background-color: var(--text-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.reason-card.left-offset {
    margin-top: -30px;
}

.reason-card.right-offset {
    margin-top: 40px;
}

.reason-card.center-low {
    margin-top: 20px;
}

.reason-card.left-high {
    margin-top: -50px;
}

.reason-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reason-card p {
    color: var(--text-light);
}

.location-context-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    gap: 3rem;
}

.location-text-offset {
    width: 80%;
    max-width: 800px;
}

.location-text-offset h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.location-text-offset p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.location-image-overlap {
    width: 70%;
    margin-left: auto;
    margin-top: -80px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-image-overlap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.contact-alternate-offset {
    padding: 4rem 5%;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.alternate-content-wide {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.alternate-content-wide h2 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.alternate-content-wide p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
}

.alternate-content-wide a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-directions-asymmetric {
    padding: 5rem 5%;
}

.contact-directions-asymmetric h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.directions-blocks-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.direction-block {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
}

.direction-block.offset-left {
    margin-top: -20px;
}

.direction-block.offset-right {
    margin-top: 40px;
}

.direction-block.offset-center {
    margin-top: 10px;
}

.direction-block h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.direction-block p {
    color: var(--text-light);
}

.final-contact-cta-offset {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.final-cta-content-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--text-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.final-cta-content-asymmetric h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.final-cta-content-asymmetric p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.thanks-hero-offset {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    gap: 3rem;
}

.thanks-content-asymmetric {
    width: 85%;
    max-width: 900px;
}

.thanks-content-asymmetric h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details-offset {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.steps-timeline-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-step {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    border-left: 4px solid var(--accent-color);
}

.timeline-step.offset-left {
    margin-top: -20px;
}

.timeline-step.offset-center {
    margin-top: 30px;
}

.timeline-step.offset-right {
    margin-top: -10px;
}

.timeline-step h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.timeline-step p {
    color: var(--text-light);
}

.thanks-info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-block-offset {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.info-block-offset-right {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    margin-top: 40px;
}

.info-block-offset h3,
.info-block-offset-right h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-block-offset p,
.info-block-offset-right p {
    color: var(--text-light);
}

.thanks-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.thanks-visual-overlap {
    width: 65%;
    margin-left: auto;
    margin-top: -200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.thanks-visual-overlap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.thanks-testimonial-asymmetric {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.testimonial-content-offset {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--text-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.legal-content-offset {
    padding: 4rem 5%;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.legal-section h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.legal-section li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.legal-section a {
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

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

    .hero-text-offset {
        width: 95%;
        margin-top: -80px;
        padding: 2rem;
    }

    .stat-blocks-irregular {
        flex-direction: column;
    }

    .stat-card.offset-left,
    .stat-card.offset-right,
    .stat-card.offset-center {
        margin-top: 0;
    }

    .insight-visual-offset {
        width: 100%;
        margin-top: 0;
    }

    .approach-item.small,
    .approach-item.medium,
    .approach-item.medium-offset {
        flex: 1 1 100%;
        margin-top: 0;
    }

    .program-card.offset-bottom,
    .program-card.offset-mid,
    .program-card.offset-right-far,
    .program-card.offset-left-low {
        margin-left: 0;
        width: 100%;
    }

    .testimonial-image-offset {
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .enrollment-form-offset {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
    }

    .why-block.left-offset,
    .why-block.right-offset,
    .why-block.center-low {
        margin-top: 0;
    }

    .environment-image-overlap {
        width: 100%;
        margin-top: 0;
    }

    .instructor-card.small-card,
    .instructor-card.large-card,
    .instructor-card.medium-card {
        flex: 1 1 100%;
        margin-top: 0;
    }

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

    .footer-col.offset-down {
        margin-top: 0;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .philosophy-item.large-offset,
    .philosophy-item.small-top,
    .philosophy-item.medium-bottom,
    .philosophy-item.medium-right {
        flex: 1 1 100%;
        margin-top: 0;
        margin-left: 0;
    }

    .origin-visual-offset {
        width: 100%;
        margin-top: 0;
    }

    .approach-text-overlap {
        width: 100%;
        margin-top: 0;
    }

    .impact-stat.offset-top-left,
    .impact-stat.offset-center,
    .impact-stat.offset-bottom-right,
    .impact-stat.offset-mid-left {
        margin-top: 0;
    }

    .outcomes-visual-staggered {
        width: 100%;
        margin-top: 0;
    }

    .value-block.left-high,
    .value-block.right-low,
    .value-block.center-mid {
        margin-top: 0;
    }

    .vision-image-overlap {
        width: 100%;
    }

    .vision-text-offset {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
    }

    .program-visual-offset {
        width: 100%;
    }

    .program-info-overlap {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .step-card.offset-left,
    .step-card.offset-center,
    .step-card.offset-right {
        margin-top: 0;
    }

    .contact-block.offset-down,
    .contact-block.offset-right {
        margin-left: 0;
        width: 100%;
    }

    .contact-visual-overlap {
        width: 100%;
        margin-top: 0;
    }

    .reason-card.left-offset,
    .reason-card.right-offset,
    .reason-card.center-low,
    .reason-card.left-high {
        margin-top: 0;
    }

    .location-image-overlap {
        width: 100%;
        margin-top: 0;
    }

    .direction-block.offset-left,
    .direction-block.offset-right,
    .direction-block.offset-center {
        margin-top: 0;
    }

    .thanks-visual-overlap {
        width: 100%;
        margin-top: 0;
    }

    .timeline-step.offset-left,
    .timeline-step.offset-center,
    .timeline-step.offset-right {
        margin-top: 0;
    }

    .info-block-offset-right {
        margin-top: 0;
    }
}
