/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-orange: #f59e0b;
    --accent-purple: #8b5cf6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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(--bg-white);
    font-size: 16px;
}

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

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

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

/* Cookie Banner */
.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-xl);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

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

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

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

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

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

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

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.btn-nav {
    padding: 0.625rem 1.25rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
}

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

.hero-split p {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
}

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

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

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

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

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

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

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

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

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

.hero-right {
    flex: 1;
    min-height: 600px;
    overflow: hidden;
}

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

/* Value Split Section */
.value-split {
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
}

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

.value-image {
    flex: 1;
    min-height: 500px;
}

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

.value-content {
    flex: 1;
    padding: 4rem 3rem;
}

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

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

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

.value-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* Programs Section */
.programs-featured {
    padding: 5rem 3rem;
    background-color: var(--bg-light);
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.program-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.program-visual {
    height: 250px;
    overflow: hidden;
}

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

.program-info {
    padding: 2rem;
}

.program-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.program-info p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

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

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

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

.btn-program {
    display: block;
    text-align: center;
    padding: 0.875rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
}

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

/* Testimony Split */
.testimony-split {
    display: flex;
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.testimony-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimony-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
}

.testimony-content p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimony-content footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimony-content strong {
    font-weight: 700;
    font-style: normal;
}

.testimony-content span {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: normal;
}

.testimony-visual {
    flex: 1;
    min-height: 500px;
}

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

/* Approach Split */
.approach-split {
    display: flex;
    align-items: center;
}

.approach-image {
    flex: 1;
    min-height: 600px;
}

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

.approach-content {
    flex: 1;
    padding: 4rem 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: var(--accent-orange);
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

.feature-block h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-block p {
    color: var(--text-medium);
}

/* Outcomes Data */
.outcomes-data {
    padding: 5rem 3rem;
    background-color: var(--bg-light);
}

.outcomes-header {
    text-align: center;
    margin-bottom: 3rem;
}

.outcomes-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.outcomes-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.outcomes-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.outcome-metric {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.outcomes-right {
    flex: 1;
}

.outcomes-right p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* More Programs Split */
.more-programs-split {
    display: flex;
    background-color: var(--bg-white);
}

.more-programs-content {
    flex: 1;
    padding: 4rem 3rem;
}

.more-programs-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.additional-programs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mini-program {
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mini-program:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.mini-program h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mini-program p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.mini-program-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.link-simple {
    color: var(--primary-color);
    font-weight: 600;
}

.more-programs-visual {
    flex: 1;
    min-height: 500px;
}

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

/* Enrollment Split */
.enrollment-split {
    display: flex;
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.enrollment-left {
    flex: 1;
    padding: 2rem 3rem;
}

.enrollment-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.trust-signals {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.trust-signals p {
    font-weight: 700;
    margin-bottom: 1rem;
}

.trust-signals ol {
    padding-left: 1.5rem;
}

.trust-signals li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.enrollment-right {
    flex: 1;
    padding: 2rem 3rem;
}

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

.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: 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,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

/* Final CTA Split */
.final-cta-split {
    display: flex;
    background-color: var(--accent-purple);
    color: white;
}

.final-cta-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 1.125rem;
    max-width: 500px;
}

.final-cta-visual {
    flex: 1;
    min-height: 400px;
}

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

/* About Page Styles */
.about-hero-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.about-hero-content {
    flex: 1;
    padding: 4rem 3rem;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: var(--text-medium);
}

.about-hero-image {
    flex: 1;
    min-height: 500px;
}

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

.origin-split {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
}

.origin-image {
    flex: 1;
    min-height: 500px;
}

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

.origin-content {
    flex: 1;
    padding: 4rem 3rem;
}

.origin-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.values-section {
    padding: 5rem 3rem;
    background-color: var(--bg-white);
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

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

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

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.team-split {
    display: flex;
    background-color: var(--bg-light);
}

.team-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.team-image {
    flex: 1;
    min-height: 500px;
}

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

.partners-section {
    padding: 5rem 3rem;
    background-color: var(--bg-white);
}

.partners-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    padding: 1.5rem 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-medium);
}

.impact-split {
    display: flex;
    align-items: center;
}

.impact-image {
    flex: 1;
    min-height: 500px;
}

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

.impact-content {
    flex: 1;
    padding: 4rem 3rem;
}

.impact-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

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

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.impact-label {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.location-split {
    display: flex;
    background-color: var(--bg-light);
}

.location-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.location-image {
    flex: 1;
    min-height: 500px;
}

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

.cta-about {
    padding: 5rem 3rem;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-about-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Services Page */
.services-hero {
    padding: 5rem 3rem;
    background-color: var(--bg-light);
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.25rem;
    color: var(--text-medium);
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.service-detail-split:nth-child(even) {
    background-color: var(--bg-light);
}

.service-detail-content {
    flex: 1;
    padding: 2rem 3rem;
}

.service-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-content > p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-curriculum {
    margin-bottom: 2rem;
}

.service-curriculum h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-curriculum ul {
    list-style: none;
    padding-left: 0;
}

.service-curriculum li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
}

.service-curriculum li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.service-meta-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.meta-item {
    padding: 0.5rem 0;
    color: var(--text-medium);
}

.price-highlight {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-detail-image {
    flex: 1;
    min-height: 500px;
}

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

.financing-section {
    padding: 5rem 3rem;
    background-color: var(--bg-white);
}

.financing-content {
    max-width: 1200px;
    margin: 0 auto;
}

.financing-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.financing-content > p {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.financing-options {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.financing-option {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.financing-option h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.services-cta {
    padding: 5rem 3rem;
    background-color: var(--text-dark);
    text-align: center;
}

.services-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.services-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-hero-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
    background-color: var(--bg-light);
}

.contact-hero-content {
    flex: 1;
    padding: 4rem 3rem;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: var(--text-medium);
}

.contact-hero-image {
    flex: 1;
    min-height: 400px;
}

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

.contact-info-split {
    display: flex;
    padding: 5rem 3rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

.contact-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

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

.contact-note {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-map {
    flex: 1;
    padding-left: 3rem;
}

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

.map-caption {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

.visit-options {
    padding: 5rem 3rem;
    background-color: var(--bg-light);
}

.visit-header {
    text-align: center;
    margin-bottom: 3rem;
}

.visit-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

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

.visit-option {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.visit-option h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.commute-split {
    display: flex;
    align-items: center;
}

.commute-image {
    flex: 1;
    min-height: 500px;
}

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

.commute-content {
    flex: 1;
    padding: 4rem 3rem;
}

.commute-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.commute-list {
    list-style: none;
    padding-left: 0;
}

.commute-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

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

.faq-contact {
    padding: 5rem 3rem;
    background-color: var(--bg-light);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

.contact-cta {
    padding: 5rem 3rem;
    background-color: var(--primary-color);
    text-align: center;
}

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.thanks-content {
    max-width: 800px;
    background-color: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.thanks-details {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-details h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.thanks-timeline {
    padding-left: 1.5rem;
}

.thanks-timeline li {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-timeline strong {
    color: var(--text-dark);
}

.thanks-next-steps {
    text-align: left;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-next-steps h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thanks-next-steps p {
    margin-bottom: 1rem;
}

.thanks-next-steps ul {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

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

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.legal-container h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

/* Footer */
.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 3rem 2rem;
}

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

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .testimony-split,
    .approach-split,
    .more-programs-split,
    .enrollment-split,
    .final-cta-split,
    .about-hero-split,
    .origin-split,
    .team-split,
    .impact-split,
    .location-split,
    .service-detail-split,
    .contact-hero-split,
    .contact-info-split,
    .commute-split {
        flex-direction: column;
    }

    .value-split.reverse,
    .approach-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .outcomes-split {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-split h1,
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

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

    .hero-stats {
        gap: 2rem;
    }
}

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

    .nav-links {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .hero-left,
    .value-content,
    .approach-content,
    .enrollment-left,
    .enrollment-right,
    .contact-details {
        padding: 2rem 1.5rem;
    }

    .section-header-center h2,
    .outcomes-header h2,
    .values-header h2,
    .partners-header h2 {
        font-size: 2rem;
    }

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

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

    .contact-map {
        padding-left: 0;
        padding-top: 2rem;
    }
}