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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --error-color: #ef4444;
}

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

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

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

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

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

.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

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

.nav-brand a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

.nav-cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-right: 12px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

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

.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.why-us-split {
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.split-visual {
    flex: 1;
}

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

.split-content {
    flex: 1;
    padding: 0 60px;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 24px;
    padding-left: 32px;
    position: relative;
}

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

.feature-list strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-list span {
    color: var(--text-light);
}

.courses-preview {
    background: var(--bg-light);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.courses-split-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.course-category {
    display: flex;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.course-category.reverse {
    flex-direction: row-reverse;
}

.category-image {
    flex: 1;
}

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

.category-info {
    flex: 1;
    padding: 40px;
}

.category-info h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.category-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.link-arrow::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.link-arrow:hover::after {
    margin-left: 12px;
}

.testimonials-split {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-split h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.how-it-works {
    padding: 100px 0;
    background: var(--bg-light);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.steps-split {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.step-block {
    display: flex;
    gap: 40px;
    align-items: center;
}

.step-block.reverse {
    flex-direction: row-reverse;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    min-width: 120px;
    text-align: center;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.benefits-visual {
    display: flex;
    padding: 100px 0;
    align-items: center;
}

.benefits-content {
    flex: 1.2;
    padding-right: 60px;
}

.benefits-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 800;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    background: var(--secondary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

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

.benefits-image {
    flex: 1;
}

.benefits-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    color: white;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-box > p {
    font-size: 1.2rem;
    margin-bottom: 48px;
    opacity: 0.95;
}

.enroll-form {
    background: white;
    padding: 48px;
    border-radius: 12px;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
    flex: 1;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

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

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.faq-split {
    padding: 100px 0;
    background: var(--bg-white);
}

.faq-split h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

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

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

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

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

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

.footer-col ul li {
    margin-bottom: 10px;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

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

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

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

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

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

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-section {
    padding: 80px 0;
}

.services-section.alt-bg {
    background: var(--bg-light);
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.category-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-split-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

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

.service-details {
    flex: 1.3;
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-details > p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-price {
    margin-bottom: 24px;
}

.service-price .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-enroll {
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.comparison-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.comparison-table {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.comparison-col {
    flex: 1;
    max-width: 350px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    position: relative;
}

.comparison-col.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.comparison-col h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.package-desc {
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.comparison-col ul li {
    padding: 12px 0 12px 28px;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.comparison-col ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.cta-simple {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-simple h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-simple p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-primary-large {
    background: var(--primary-color);
    color: white;
    padding: 18px 48px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.about-story {
    padding: 80px 0;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.mission-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.mission-grid {
    display: flex;
    gap: 40px;
}

.mission-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.mission-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.team-intro {
    padding: 80px 0;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.team-desc {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.values-split {
    display: flex;
    padding: 80px 0;
    background: var(--bg-light);
    align-items: center;
}

.values-content {
    flex: 1.2;
    padding-right: 60px;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 800;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.values-image {
    flex: 1;
}

.values-image img {
    width: 100%;
    border-radius: 12px;
}

.numbers-section {
    padding: 80px 0;
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.numbers-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.number-box {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.big-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.number-box p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.approach-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: 12px;
}

.approach-content {
    flex: 1.2;
}

.approach-content h2 {
    font-size: 2.3rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.approach-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-list {
    list-style: none;
    margin: 24px 0;
}

.approach-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-dark);
}

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

.timeline-section {
    padding: 80px 0;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 800;
}

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

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 90px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: var(--border-color);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 100px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-split {
    display: flex;
    gap: 60px;
    padding: 80px 0;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 2.3rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.contact-info-side > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.small-note {
    font-size: 0.9rem;
    font-style: italic;
}

.contact-note {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-note h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.contact-map-side {
    flex: 1;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 20px;
}

.map-overlay p {
    margin: 0;
}

.quick-links {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.quick-links h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.quick-links ul {
    list-style: none;
}

.quick-links ul li {
    margin-bottom: 12px;
}

.quick-links ul li a {
    color: var(--primary-color);
    font-weight: 500;
}

.faq-contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.thanks-page {
    padding: 100px 0;
    min-height: 600px;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

.thanks-info {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 800;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 24px;
}

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

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.selected-course {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    margin-bottom: 40px;
}

.selected-course h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.course-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.support-box {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.support-box h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.support-box p {
    color: var(--text-light);
    line-height: 1.7;
}

.support-box a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.next-steps-split {
    padding: 80px 0;
    background: var(--bg-light);
}

.next-steps-split h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.prep-grid {
    display: flex;
    gap: 30px;
}

.prep-card {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 12px;
}

.prep-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-page {
    padding: 80px 0;
}

.legal-page .container {
    display: flex;
    gap: 60px;
}

.legal-content {
    flex: 2;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

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

.legal-section ul,
.legal-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.warning-note {
    background: #fef3c7;
    padding: 16px;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    margin: 16px 0;
}

.legal-sidebar {
    flex: 1;
}

.sidebar-box {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.sidebar-box h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box ul li {
    margin-bottom: 12px;
}

.sidebar-box ul li a {
    color: var(--primary-color);
    font-weight: 500;
}

.sidebar-box p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-visual img {
        height: 400px;
    }

    .why-us-split,
    .about-split,
    .approach-split,
    .values-split {
        flex-direction: column;
    }

    .split-content,
    .about-content,
    .approach-content,
    .values-content {
        padding: 0;
    }

    .course-category,
    .service-card {
        flex-direction: column;
    }

    .course-category.reverse,
    .service-card.reverse {
        flex-direction: column;
    }

    .testimonials-grid,
    .mission-grid,
    .comparison-table,
    .prep-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .enroll-form {
        padding: 32px 24px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-split {
        flex-direction: column;
    }

    .legal-page .container {
        flex-direction: column;
    }

    .step-block,
    .step-block.reverse {
        flex-direction: column;
    }

    .step-number {
        font-size: 3rem;
    }

    .benefits-visual {
        flex-direction: column;
    }

    .benefits-content {
        padding-right: 0;
    }

    .thanks-actions {
        flex-direction: column;
    }
}