* {
    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);
}

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

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: var(--shadow-xl);
    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: 24px;
}

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

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

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

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

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

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

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

.hero-card {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.intro-cards {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.card-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

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

.card-icon {
    width: 56px;
    height: 56px;
    background-color: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

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

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

.why-section {
    padding: 100px 0;
    background-color: white;
}

.split-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.content-left {
    flex: 1;
}

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

.content-left p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.link-arrow {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 16px;
    transition: all 0.3s;
}

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

.content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 32px;
    border-radius: 12px;
    color: white;
    box-shadow: var(--shadow-lg);
}

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

.stat-card p {
    font-size: 1rem;
    opacity: 0.95;
}

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

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

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

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

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.program-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    cursor: pointer;
}

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

.program-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.program-img-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.program-img-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.program-img-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.program-img-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.program-img-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.program-img-6 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.program-details {
    padding: 32px;
}

.program-tag {
    display: inline-block;
    background-color: #eff6ff;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

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

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

.btn-select {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.programs-cta {
    text-align: center;
    margin-top: 48px;
}

.programs-cta p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.btn-secondary {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

.testimonials-section {
    padding: 100px 0;
    background-color: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 64px;
    color: var(--text-dark);
}

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

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

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

.testimonial-author {
    display: flex;
    flex-direction: column;
}

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

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

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

.enrollment-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 56px 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.enrollment-card h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    text-align: center;
}

.enrollment-card > p {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 16px;
}

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

.final-cta {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    padding: 16px 0;
    z-index: 999;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    display: none;
}

.sticky-cta.show {
    display: block;
}

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

.sticky-content span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

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

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-intro {
    padding: 80px 0;
    background-color: white;
}

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

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

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.all-programs {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.programs-detailed {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.program-detail-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.program-detail-card:hover {
    box-shadow: var(--shadow-xl);
}

.program-header {
    background-color: var(--bg-light);
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

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

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

.program-body {
    padding: 32px;
}

.program-body > p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 32px;
}

.curriculum-preview {
    margin-bottom: 32px;
}

.curriculum-preview strong,
.program-outcomes strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.curriculum-preview ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.curriculum-preview ul li {
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.curriculum-preview ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.program-outcomes {
    margin-bottom: 32px;
}

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

.btn-select-program {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.financing-section {
    padding: 80px 0;
    background-color: white;
}

.financing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.financing-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.financing-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
}

.financing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.about-story {
    padding: 100px 0;
    background-color: white;
}

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

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.story-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 24px;
}

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

.approach-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 64px;
    color: var(--text-dark);
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.approach-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background-color: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

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

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.values-section {
    padding: 100px 0;
    background-color: white;
}

.values-content {
    max-width: 900px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 2.8rem;
    margin-bottom: 48px;
    color: var(--text-dark);
    text-align: center;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

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

.stats-highlight h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 64px;
    color: white;
}

.stats-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.stat-item p {
    color: white;
    opacity: 0.95;
    font-size: 1rem;
}

.team-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 64px;
    color: var(--text-dark);
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

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

.team-image {
    height: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-img-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-img-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.team-img-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.team-card h3 {
    padding: 24px 24px 0;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.team-role {
    display: block;
    padding: 8px 24px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.team-card p {
    padding: 0 24px 24px;
    color: var(--text-medium);
    line-height: 1.7;
}

.partnerships-section {
    padding: 100px 0;
    background-color: white;
}

.partnerships-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.partnerships-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.partners-note {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.partners-note p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.cta-about {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: white;
}

.cta-about p {
    font-size: 1.2rem;
    color: white;
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

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

.contact-content {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: flex;
    gap: 64px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.info-block {
    margin-bottom: 32px;
}

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

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

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

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

.map-placeholder {
    flex: 1;
}

.map-box {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-box p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

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

.faq-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

.contact-cta {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.thanks-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    text-align: center;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
}

.success-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.thanks-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: white;
    opacity: 0.95;
    line-height: 1.8;
}

.service-confirm {
    margin-top: 24px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-weight: 600;
}

.next-steps {
    padding: 100px 0;
    background-color: white;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 64px;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px 32px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

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

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

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

.thanks-info {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.info-boxes {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

.thanks-cta {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.thanks-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-cta p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.legal-page {
    padding: 80px 0 100px;
    background-color: white;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin: 20px 0 20px 24px;
    color: var(--text-medium);
}

.legal-content ul li {
    margin-bottom: 12px;
    line-height: 1.7;
}

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li a {
        display: block;
        padding: 16px 20px;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .card-grid,
    .testimonials-grid,
    .programs-grid,
    .financing-grid,
    .approach-grid,
    .stats-grid,
    .team-grid,
    .steps-grid,
    .info-boxes,
    .faq-grid {
        flex-direction: column;
    }

    .split-content,
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .program-header {
        flex-direction: column;
        gap: 16px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .section-header h2,
    .page-hero h1 {
        font-size: 2rem;
    }

    .enrollment-card {
        padding: 40px 28px;
    }
}