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

:root {
    --primary-color: #2563eb;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
}

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

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

.header-left {
    flex: 0 0 auto;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-light);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1d4ed8;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #d97706;
}

.cta-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
}

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

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.intro-left p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.intro-right {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

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

.value-proposition {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: var(--background-light);
}

.value-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.value-content {
    flex: 1;
}

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

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

.benefits-list {
    list-style: none;
    padding: 0;
}

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

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

.courses-preview {
    padding: 5rem 5%;
}

.courses-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

.course-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.course-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.course-image {
    width: 100%;
    height: 200px;
    background-color: var(--border-color);
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.course-details {
    padding: 1.5rem;
}

.course-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.course-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.course-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-select-course {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-course:hover {
    background-color: #1d4ed8;
}

.enrollment-section {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background-color: var(--background-light);
}

.enrollment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enrollment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.enrollment-content p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.enrollment-form-container {
    flex: 1;
}

.enrollment-form {
    background-color: var(--background-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.enrollment-form h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.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: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.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 2rem;
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #059669;
}

.testimonials-section {
    padding: 5rem 5%;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.testimonial {
    flex: 1;
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 12px;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.final-cta-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.cta-visual {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.cta-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--secondary-color);
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

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

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

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

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

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

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

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

.disclaimer {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

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

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

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
    align-items: stretch;
}

.hero-text {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}

.hero-visual {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.story-image {
    flex: 0.8;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--border-color);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: var(--background-light);
}

.mission-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--border-color);
}

.mission-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.mission-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.approach-section {
    padding: 5rem 5%;
}

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 12px;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.approach-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.team-intro-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: var(--background-light);
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.team-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.values-section {
    padding: 5rem 5%;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.values-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--background-light);
    border-radius: 12px;
}

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

.value-block p {
    color: var(--text-light);
    font-size: 1rem;
}

.cta-about {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--secondary-color);
    color: white;
}

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

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

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

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.course-detail-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.course-detail-split.reverse {
    flex-direction: row-reverse;
    background-color: var(--background-light);
}

.course-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.course-detail-info {
    flex: 1;
}

.course-detail-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.course-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.course-detail-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.course-detail-info h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.course-detail-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.course-detail-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.course-detail-info ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.enrollment-cta-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background-color: var(--background-light);
}

.cta-content-services {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.enrollment-form-services {
    flex: 1;
}

.contact-hero-split {
    display: flex;
    min-height: 400px;
    align-items: stretch;
}

.contact-hero-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
}

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

.contact-hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}

.contact-hero-image {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.contact-info-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-map-placeholder {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: var(--border-color);
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 23, 42, 0.9);
    padding: 1.5rem;
    color: white;
}

.map-overlay p {
    margin: 0;
    font-size: 1.125rem;
}

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

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.faq-column {
    flex: 1;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--background-white);
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-light);
    font-size: 1rem;
}

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

.cta-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--border-color);
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

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

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

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

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

.thanks-info {
    flex: 1.2;
}

.thanks-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-number {
    flex-shrink: 0;
    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;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.timeline-content p {
    color: var(--text-light);
    font-size: 1rem;
}

.thanks-image {
    flex: 0.8;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--border-color);
}

.thanks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.preparation-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.prep-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 12px;
}

.prep-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.thanks-contact-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.contact-prompt {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--background-light);
    border-radius: 12px;
}

.contact-prompt h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-prompt p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-email {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
}

.thanks-explore {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--secondary-color);
    border-radius: 12px;
    color: white;
}

.thanks-explore h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.thanks-explore p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

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

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.last-updated {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

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

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

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

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

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split,
    .intro-section,
    .value-proposition,
    .story-section,
    .mission-split,
    .team-intro-split,
    .course-detail-split,
    .contact-info-split,
    .contact-cta,
    .thanks-details-split,
    .thanks-contact-split,
    .enrollment-section,
    .enrollment-cta-split,
    .final-cta-split,
    .page-hero-split,
    .contact-hero-split {
        flex-direction: column;
    }

    .course-detail-split.reverse {
        flex-direction: column;
    }

    .testimonials-split,
    .faq-split {
        flex-direction: column;
    }

    .hero-content h1,
    .hero-text h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }

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

    .approach-item,
    .value-block,
    .prep-card {
        flex: 1 1 100%;
    }
}