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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #E5E7EB;
    background-color: #0F1216;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #06B6D4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #F59E0B;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0891B2, #0E7490);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #D97706, #B45309);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background: transparent;
    color: #06B6D4;
    border: 2px solid #06B6D4;
}

.btn-outline:hover {
    background: #06B6D4;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 18, 22, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(360deg);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #E5E7EB;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: #06B6D4;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #E5E7EB;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0F1216 0%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #E5E7EB, #06B6D4, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0F1216 0%, #111827 100%);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #E5E7EB, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #E5E7EB, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features {
    background: #111827;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    color: #06B6D4;
    margin-bottom: 1rem;
}

/* Languages Preview */
.languages-preview {
    background: #0F1216;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.language-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.language-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.language-card:hover img {
    transform: scale(1.1);
}

.language-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #06B6D4;
}

.language-card p {
    padding: 0 1.5rem 1.5rem;
    color: #9CA3AF;
    margin: 0;
}

/* Testimonials */
.testimonials {
    background: #111827;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #06B6D4;
    font-family: serif;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.testimonial-author strong {
    color: #06B6D4;
}

.testimonial-author span {
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Map Section */
.map-section {
    background: #0F1216;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.map-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.map-info h3 {
    color: #06B6D4;
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #111827;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9CA3AF;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #06B6D4;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

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

.footer-column a {
    color: #9CA3AF;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #06B6D4;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #06B6D4;
    color: white;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    z-index: 10000;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cookie-consent.hidden {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.cookie-content h3 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cookie-content p {
    color: #9CA3AF;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

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

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* About Page Styles */
.about-content {
    background: #0F1216;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    color: #06B6D4;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.values-section {
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-icon svg {
    width: 30px;
    height: 30px;
}

.value-card h3 {
    color: #06B6D4;
    margin-bottom: 1rem;
}

/* History Timeline */
.history-section {
    margin-bottom: 4rem;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #06B6D4, #F59E0B);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    margin: 0 2rem;
}

.timeline-content h3 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
}

/* Stats Section */
.stats-section {
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9CA3AF;
    font-weight: 500;
}

.team-preview {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-preview h2 {
    margin-bottom: 1rem;
}

.team-preview p {
    color: #9CA3AF;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Languages Page Styles */
.course-types {
    background: #111827;
}

.course-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.course-type-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.course-type-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.course-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.course-type-icon svg {
    width: 30px;
    height: 30px;
}

.course-type-card h3 {
    color: #F59E0B;
    margin-bottom: 1rem;
}

/* Language Cards Detail */
.languages-section {
    background: #0F1216;
}

.language-card-detail {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.language-card-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.language-header {
    position: relative;
    overflow: hidden;
}

.language-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.language-card-detail:hover .language-header img {
    transform: scale(1.1);
}

.language-flag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.language-content {
    padding: 2rem;
}

.language-content h3 {
    color: #06B6D4;
    margin-bottom: 1rem;
}

.language-levels {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.level-badge {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.language-features ul {
    list-style: none;
    margin-top: 1rem;
}

.language-features li {
    padding: 0.25rem 0;
    color: #9CA3AF;
    position: relative;
    padding-left: 1.5rem;
}

.language-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #06B6D4;
    font-weight: bold;
}

/* Special Courses */
.special-courses {
    background: #111827;
}

.special-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.special-course-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.special-course-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.special-course-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.special-course-icon svg {
    width: 30px;
    height: 30px;
}

.special-course-card h3 {
    color: #F59E0B;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #111827, #0F1216);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    color: #9CA3AF;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Teachers Page Styles */
.teachers-section {
    background: #0F1216;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.teacher-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.teacher-image {
    position: relative;
    overflow: hidden;
}

.teacher-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.teacher-card:hover .teacher-image img {
    transform: scale(1.1);
}

.teacher-flag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.teacher-info {
    padding: 2rem;
}

.teacher-info h3 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
}

.teacher-languages {
    color: #F59E0B;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.teacher-experience {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.teacher-info p {
    color: #9CA3AF;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.teacher-specialties {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.specialty-tag {
    background: rgba(6, 182, 212, 0.2);
    color: #06B6D4;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Qualifications Section */
.qualifications-section {
    background: #111827;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.qualification-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.qualification-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.qualification-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.qualification-icon svg {
    width: 30px;
    height: 30px;
}

.qualification-card h3 {
    color: #F59E0B;
    margin-bottom: 1rem;
}

/* Join Team CTA */
.join-team-cta {
    background: linear-gradient(135deg, #0F1216, #111827);
    text-align: center;
}

.join-team-cta .cta-content h2 {
    margin-bottom: 1rem;
}

.join-team-cta .cta-content p {
    color: #9CA3AF;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Schedule Page Styles */
.schedule-filters {
    background: #111827;
    padding: 2rem 0;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    background: rgba(255, 255, 255, 0.05);
    color: #9CA3AF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-tab:hover,
.filter-tab.active {
    background: #06B6D4;
    color: white;
    border-color: #06B6D4;
}

/* Schedule Grid */
.schedule-section {
    background: #0F1216;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.day-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.day-header {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.time-slots {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.course-slot {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-slot:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.course-slot.english {
    border-left: 4px solid #06B6D4;
}

.course-slot.german {
    border-left: 4px solid #F59E0B;
}

.course-slot.spanish {
    border-left: 4px solid #EF4444;
}

.course-slot.french {
    border-left: 4px solid #8B5CF6;
}

.course-slot.other {
    border-left: 4px solid #10B981;
}

.course-time {
    font-weight: 600;
    color: #06B6D4;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.course-info h4 {
    color: #E5E7EB;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.course-teacher {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.course-room {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.course-spots {
    color: #10B981;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Online Courses */
.online-courses {
    background: #111827;
}

.online-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.online-course-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.online-course-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.online-course-card h3 {
    color: #06B6D4;
    margin-bottom: 1rem;
}

.online-course-schedule {
    color: #9CA3AF;
}

.schedule-item {
    margin-bottom: 0.5rem;
}

.course-teacher {
    margin-bottom: 0.5rem;
}

/* Individual Lessons */
.individual-lessons {
    background: #0F1216;
}

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

.individual-info p {
    color: #9CA3AF;
    margin-bottom: 2rem;
}

.individual-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.individual-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.individual-feature h4 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
}

.individual-feature p {
    color: #9CA3AF;
    margin: 0;
    font-size: 0.875rem;
}

/* Pricing Page Styles */
.pricing-section {
    background: #0F1216;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid #06B6D4;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.pricing-header h3 {
    color: #06B6D4;
    margin-bottom: 1rem;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.pricing-icon svg {
    width: 30px;
    height: 30px;
}

.pricing-content {
    padding: 0 2rem 2rem;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #06B6D4;
}

.price-currency {
    font-size: 1.5rem;
    color: #9CA3AF;
}

.price-period {
    color: #9CA3AF;
    font-size: 1rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #9CA3AF;
    position: relative;
    padding-left: 2rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Special Offers */
.special-offers {
    background: #111827;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.offer-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-header h3 {
    color: #06B6D4;
    margin: 0;
}

.offer-discount {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.offer-content {
    padding: 1.5rem;
}

.offer-content p {
    color: #9CA3AF;
    margin-bottom: 1rem;
}

.offer-price {
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #9CA3AF;
    margin-right: 0.5rem;
}

.new-price {
    color: #06B6D4;
    font-weight: 600;
    font-size: 1.125rem;
}

.offer-features ul {
    list-style: none;
}

.offer-features li {
    padding: 0.25rem 0;
    color: #9CA3AF;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.875rem;
}

.offer-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #06B6D4;
    font-weight: bold;
}

/* Pricing Details */
.pricing-details {
    background: #0F1216;
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.pricing-column h3 {
    color: #06B6D4;
    margin-bottom: 1.5rem;
}

.pricing-column ul {
    list-style: none;
}

.pricing-column li {
    padding: 0.5rem 0;
    color: #9CA3AF;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #06B6D4;
    font-weight: bold;
}

/* Payment Methods */
.payment-methods {
    background: #111827;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.payment-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.payment-icon svg {
    width: 30px;
    height: 30px;
}

.payment-card h3 {
    color: #F59E0B;
    margin-bottom: 0.5rem;
}

.payment-card p {
    color: #9CA3AF;
    margin: 0;
    font-size: 0.875rem;
}

/* Pricing FAQ */
.pricing-faq {
    background: #0F1216;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h4 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #9CA3AF;
    margin: 0;
    line-height: 1.6;
}

.faq-item ul {
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.faq-item li {
    color: #9CA3AF;
    margin-bottom: 0.25rem;
}

/* Contact Page Styles */
.contact-section {
    background: #0F1216;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #06B6D4;
    margin-bottom: 2rem;
}

.contact-items {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-details p {
    color: #9CA3AF;
    margin: 0;
    line-height: 1.6;
}

.social-links h3 {
    color: #06B6D4;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: #06B6D4;
    color: white;
    transform: translateY(-2px);
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h2 {
    color: #06B6D4;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    color: #E5E7EB;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.875rem;
    color: #E5E7EB;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #06B6D4;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

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

.checkbox-group label {
    margin: 0;
    color: #9CA3AF;
    font-size: 0.875rem;
}

.checkbox-group a {
    color: #06B6D4;
}

.checkbox-group a:hover {
    color: #F59E0B;
}

/* Enrollment Form */
.enrollment-section {
    background: #111827;
}

.enrollment-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.enrollment-form h2 {
    color: #06B6D4;
    margin-bottom: 1rem;
    text-align: center;
}

.enrollment-form p {
    color: #9CA3AF;
    text-align: center;
    margin-bottom: 2rem;
}

/* Location Info */
.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.location-item h3 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: #9CA3AF;
    margin: 0;
    line-height: 1.6;
}

/* Success Page Styles */
.success-section {
    background: #0F1216;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
}

.success-icon svg {
    width: 50px;
    height: 50px;
}

.success-content h1 {
    color: #10B981;
    margin-bottom: 1rem;
}

.success-message {
    color: #9CA3AF;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.success-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
    text-align: left;
}

.success-info h2 {
    color: #06B6D4;
    margin-bottom: 2rem;
    text-align: center;
}

.success-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.success-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #9CA3AF;
    margin: 0;
    line-height: 1.6;
}

.success-contact {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

.success-contact h3 {
    color: #06B6D4;
    margin-bottom: 1rem;
    text-align: center;
}

.success-contact p {
    color: #9CA3AF;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-option svg {
    width: 24px;
    height: 24px;
    color: #06B6D4;
}

.contact-option strong {
    color: #06B6D4;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-option p {
    color: #9CA3AF;
    margin: 0;
}

.success-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Useful Links */
.useful-links {
    background: #111827;
}

.useful-links h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #06B6D4;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.link-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.link-icon svg {
    width: 30px;
    height: 30px;
}

.link-card h3 {
    color: #06B6D4;
    margin-bottom: 1rem;
}

.link-card p {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.link-button {
    background: transparent;
    color: #06B6D4;
    border: 1px solid #06B6D4;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-button:hover {
    background: #06B6D4;
    color: white;
}

/* Privacy Page Styles */
.privacy-content {
    background: #0F1216;
}

.privacy-intro {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

.privacy-intro p {
    color: #9CA3AF;
    line-height: 1.7;
}

.privacy-intro strong {
    color: #06B6D4;
}

.privacy-section {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section h2 {
    color: #06B6D4;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.privacy-section h3 {
    color: #F59E0B;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.privacy-section p {
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    color: #9CA3AF;
    padding-left: 1.5rem;
    line-height: 1.7;
}

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

.privacy-section strong {
    color: #E5E7EB;
}

.privacy-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.data-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.data-category h3 {
    color: #06B6D4;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.data-category ul {
    list-style: none;
    padding: 0;
}

.data-category li {
    padding: 0.25rem 0;
    color: #9CA3AF;
    position: relative;
    padding-left: 1.5rem;
}

.data-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #06B6D4;
    font-weight: bold;
}

.purposes-list {
    margin-top: 1.5rem;
}

.purpose-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.purpose-item h3 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
}

.purpose-item p {
    margin-bottom: 0.5rem;
}

.cookies-info {
    margin-top: 1.5rem;
}

.cookie-type {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.cookie-type h3 {
    color: #F59E0B;
    margin-bottom: 0.5rem;
}

.retention-periods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.retention-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.retention-item h3 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.retention-item p {
    color: #9CA3AF;
    margin: 0;
    font-size: 0.875rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.right-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.right-card h3 {
    color: #06B6D4;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.right-card p {
    color: #9CA3AF;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* FAQ Page Styles */
.faq-categories {
    background: #111827;
    padding: 2rem 0;
}

.category-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-tab {
    background: rgba(255, 255, 255, 0.05);
    color: #9CA3AF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-tab:hover,
.category-tab.active {
    background: #06B6D4;
    color: white;
    border-color: #06B6D4;
}

.faq-content {
    background: #0F1216;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    color: #06B6D4;
    margin: 0;
    font-size: 1.125rem;
}

.faq-toggle {
    color: #06B6D4;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer ul {
    color: #9CA3AF;
    padding-left: 1.5rem;
    line-height: 1.7;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer a {
    color: #06B6D4;
}

.faq-answer a:hover {
    color: #F59E0B;
}

.faq-contact {
    background: #111827;
}

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

.contact-cta h2 {
    color: #06B6D4;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #9CA3AF;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Page Styles */
.featured-article {
    background: #111827;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-category {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.post-date,
.post-author {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.featured-content h2 {
    color: #06B6D4;
    margin-bottom: 1rem;
    font-size: 1.875rem;
}

.featured-content p {
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #06B6D4;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #F59E0B;
}

.blog-categories {
    background: #0F1216;
    padding: 2rem 0;
}

.category-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-filter {
    background: rgba(255, 255, 255, 0.05);
    color: #9CA3AF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-filter:hover,
.category-filter.active {
    background: #06B6D4;
    color: white;
    border-color: #06B6D4;
}

.blog-posts {
    background: #0F1216;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    color: #06B6D4;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.3;
}

.post-content p {
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.read-time {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.load-more-section {
    text-align: center;
}

.newsletter-signup {
    background: #111827;
}

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

.newsletter-content h2 {
    color: #06B6D4;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #9CA3AF;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.875rem;
    color: #E5E7EB;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #06B6D4;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input::placeholder {
    color: #9CA3AF;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .day-column {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        top: 100%;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .languages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        order: -1;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-consent {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .feature-card,
    .value-card,
    .course-type-card,
    .special-course-card,
    .qualification-card,
    .payment-card {
        padding: 1.5rem;
    }
    
    .teacher-info,
    .language-content {
        padding: 1.5rem;
    }
    
    .contact-form,
    .enrollment-form {
        padding: 2rem 1.5rem;
    }
    
    .success-info,
    .success-contact {
        padding: 1.5rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
    }
    
    .featured-content {
        padding: 1.5rem;
    }
    
    .post-content {
        padding: 1.25rem;
    }
}

/* Text utilities */
.text-center {
    text-align: center;
}

/* Hidden utility */
.hidden {
    display: none;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #06B6D4;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .cookie-consent,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .page-header {
        background: none;
    }
}