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

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Container Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.98);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--accent-color);
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background: #d97706;
    transform: translateY(-2px);
}

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

.btn-cookie.btn-secondary:hover {
    background: white;
    color: var(--text-dark);
}

/* Navigation */
.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.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);
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 80px 20px;
}

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

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Intro Section */
.intro-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.3;
}

.intro-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    padding: 90px 20px;
    background: var(--bg-light);
}

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

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

/* Services Preview */
.services-preview {
    padding: 100px 20px;
    background: var(--bg-white);
}

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 70px;
    color: var(--text-dark);
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card.reverse {
    flex-direction: row-reverse;
    background: var(--bg-light);
}

.service-visual {
    flex: 1;
    min-width: 280px;
}

.service-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.service-details {
    flex: 1.2;
}

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

.service-details p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
}

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

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

.btn-service {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
}

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

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

/* How It Works */
.how-it-works {
    padding: 90px 20px;
    background: var(--bg-white);
}

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

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

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

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

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

/* Contact Form Section */
.contact-form-section {
    padding: 90px 20px;
    background: var(--bg-light);
}

.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.enrollment-form {
    background: var(--bg-white);
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

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

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

.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 {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

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

.cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

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

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: block;
    padding: 15px 30px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #d97706;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

/* Page Hero */
.page-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

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

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

/* About Page Styles */
.about-intro {
    padding: 80px 20px;
    background: var(--bg-white);
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

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

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

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-item {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.mission-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.team-approach {
    padding: 80px 20px;
    background: var(--bg-white);
}

.team-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.team-approach p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.numbers-section {
    padding: 90px 20px;
    background: var(--bg-light);
}

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

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

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

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

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.approach-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.why-us {
    padding: 90px 20px;
    background: var(--bg-light);
}

.why-us h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.reasons-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.reason-block {
    padding: 40px;
    background: var(--bg-white);
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.reason-block h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.cta-about {
    padding: 90px 20px;
    background: var(--bg-white);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

/* Services Page Styles */
.services-full {
    padding: 80px 20px;
    background: var(--bg-white);
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 80px;
    padding: 50px;
    background: var(--bg-light);
    border-radius: 12px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.service-image-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.service-info {
    flex: 1.3;
}

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

.service-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.features-list {
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
}

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

.pricing-box {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 2px solid var(--primary-color);
}

.price-main {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

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

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

.faq-section {
    padding: 90px 20px;
    background: var(--bg-light);
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

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

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

.cta-services {
    padding: 90px 20px;
    background: var(--bg-white);
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

/* Contact Page Styles */
.contact-content {
    padding: 80px 20px;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-box {
    flex: 1;
    min-width: 300px;
}

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

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

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

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

.map-placeholder {
    flex: 1;
    min-width: 300px;
}

.map-box {
    width: 100%;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

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

.map-caption {
    padding: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
}

.visit-info {
    padding: 80px 20px;
    background: var(--bg-light);
}

.visit-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.visit-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-contact {
    padding: 90px 20px;
    background: var(--bg-white);
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

/* Thanks Page Styles */
.thanks-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.service-confirmation {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.next-steps {
    padding: 90px 20px;
    background: var(--bg-white);
}

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

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

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

.additional-info {
    padding: 80px 20px;
    background: var(--bg-light);
}

.additional-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.additional-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.8;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.link-box {
    flex: 1;
    min-width: 200px;
    padding: 25px;
    background: var(--bg-white);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.link-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.thanks-cta {
    padding: 90px 20px;
    background: var(--bg-white);
    text-align: center;
}

.thanks-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

/* Legal Pages */
.legal-hero {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

.legal-content {
    padding: 80px 20px;
    background: var(--bg-white);
}

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

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-content ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .service-card,
    .service-card.reverse,
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-visual,
    .service-image-wrapper {
        min-width: 100%;
    }

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

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .stat-item {
        min-width: 100%;
    }

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

    .step-number {
        margin: 0 auto;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

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

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

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

    .enrollment-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

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