/* Modern Design - Lumière French School 2025 */

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

:root {
    /* Modern Gradient Color Palette */
    --primary-purple: #8B5CF6;
    --primary-violet: #7C3AED;
    --accent-pink: #EC4899;
    --accent-orange: #F59E0B;
    --accent-cyan: #06B6D4;
    --dark-navy: #1E1B4B;
    --deep-purple: #5B21B6;
    --white: #ffffff;
    --light-lavender: #F5F3FF;
    --soft-purple: #EDE9FE;
    --gray-50: #FAFAF9;
    --gray-100: #F5F5F4;
    --gray-200: #E7E5E4;
    --gray-300: #D6D3D1;
    --gray-600: #57534E;
    --gray-700: #44403C;
    --gray-900: #1C1917;
    --disclaimer-bg: #7C2D12;
    --disclaimer-text: #FEF2F2;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-secondary: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    --gradient-warm: linear-gradient(135deg, #F59E0B 0%, #EC4899 100%);
    --gradient-cool: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(139, 92, 246, 0.1);
    --shadow-md: 0 4px 16px rgba(139, 92, 246, 0.15);
    --shadow-lg: 0 8px 32px rgba(139, 92, 246, 0.2);
    --shadow-xl: 0 12px 48px rgba(139, 92, 246, 0.25);
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-900);
    background: linear-gradient(180deg, var(--white) 0%, var(--light-lavender) 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Disclaimer Banner - Updated Modern Style */
.disclaimer-banner {
    background: var(--disclaimer-bg);
    color: var(--disclaimer-text);
    padding: 16px 0;
    font-size: 13px;
    line-height: 1.6;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-banner p {
    margin: 0;
    font-weight: 300;
}

.disclaimer-banner strong {
    font-weight: 600;
    color: #FEF2F2;
}

/* Modern Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-toggle {
    display: none;
    background: var(--gradient-primary);
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.mobile-toggle:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

/* Ultra Modern Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.9) 0%, 
        rgba(236, 72, 153, 0.85) 50%,
        rgba(249, 115, 22, 0.8) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

/* Modern Glassmorphism Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    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.3), transparent);
    transition: left 0.5s;
}

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

.btn-primary {
    background: var(--white);
    color: var(--primary-purple);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 48px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-cta {
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.15rem;
    padding: 18px 48px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.5);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

/* Modern Feature Cards with Glassmorphism */
.features {
    padding: 6rem 0;
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-card p {
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.8;
}

/* About Preview Section */
.about-preview {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.content-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-text p {
    font-weight: 300;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.content-text .btn {
    margin-top: 2rem;
}

.content-image {
    position: relative;
}

.content-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    transition: transform 0.4s ease;
}

.content-image img:hover {
    transform: scale(1.03) rotate(2deg);
}

/* Teaching Methods */
.teaching-methods {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-lavender) 0%, var(--white) 100%);
}

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

.method-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

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

.method-card i {
    font-size: 3.5rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.method-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.method-card p {
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 243, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(139, 92, 246, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.stars {
    color: #F59E0B;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-weight: 300;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.9;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    display: block;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: 400;
}

/* Statistics Section with Gradient */
.statistics {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

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

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

.stat-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--soft-purple) 0%, var(--white) 100%);
}

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

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
}

/* Modern Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--deep-purple) 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-tagline {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-col p {
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 8px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.2rem;
}

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

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px) scale(1.1);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-weight: 300;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Modern Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(20px);
    color: var(--white);
    padding: 2rem 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-weight: 300;
    line-height: 1.7;
}

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

.btn-accept {
    background: var(--gradient-primary);
    padding: 12px 32px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.3rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

/* Additional page styles */
.our-story {
    padding: 6rem 0;
}

.mission-vision {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-lavender) 0%, var(--white) 100%);
}

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

.mission-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

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

.mission-card i {
    font-size: 4rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.mission-card p {
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Teaching Methodology */
.teaching-methodology {
    padding: 6rem 0;
}

.methodology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.methodology-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.methodology-text > p {
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.methodology-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.method-point:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(8px);
}

.method-point i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin-top: 0.2rem;
}

.method-point h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.method-point p {
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.8;
}

.methodology-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

/* Team Section */
.our-team {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-lavender) 100%);
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gray-600);
    max-width: 700px;
    margin: -1rem auto 3.5rem;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.team-member:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.5rem 1rem 0.5rem;
    color: var(--gray-900);
}

.team-member .role {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-member .bio {
    font-weight: 300;
    color: var(--gray-600);
    padding: 0 1.5rem 2rem;
    line-height: 1.7;
}

/* Benefits Section */
.why-choose {
    padding: 6rem 0;
}

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

.benefit-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-item i {
    font-size: 3.5rem;
    background: var(--gradient-cool);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.benefit-item p {
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Courses */
.courses-section {
    padding: 6rem 0;
}

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

.course-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.course-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.course-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.course-content {
    padding: 2.5rem;
}

.course-level {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.course-card p {
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.course-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 300;
    color: var(--gray-600);
    margin-bottom: 0.8rem;
}

.course-features i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
}

/* Learning Process */
.learning-process {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-lavender) 0%, var(--white) 100%);
}

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

.process-step {
    text-align: center;
    padding: 2.5rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.process-step p {
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Blog */
.blog-section {
    padding: 6rem 0;
}

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

.blog-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.blog-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-content {
    padding: 2.5rem;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.blog-meta i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
    line-height: 1.4;
}

.blog-card .excerpt {
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.read-more {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 1rem;
}

/* Article */
.article-header {
    background: linear-gradient(135deg, var(--light-lavender) 0%, var(--white) 100%);
    padding: 4rem 0 3rem;
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 2.5rem;
    font-size: 1rem;
    color: var(--gray-600);
    flex-wrap: wrap;
}

.article-meta i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-content {
    padding: 5rem 0;
}

.article-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 32px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.article-body {
    max-width: 900px;
    margin: 0 auto;
}

.article-body h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-body h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--gray-900);
}

.article-body p {
    font-weight: 300;
    color: var(--gray-700);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.article-body ul, .article-body ol {
    margin: 2rem 0;
    padding-left: 2.5rem;
}

.article-body li {
    font-weight: 300;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.related-articles {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-lavender) 0%, var(--white) 100%);
}

/* Contact */
.contact-section {
    padding: 6rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-section p {
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.contact-detail:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(8px);
}

.contact-detail i {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.2rem;
}

.contact-detail-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--gray-900);
}

.contact-detail-content p {
    font-weight: 300;
    color: var(--gray-600);
    margin: 0;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.form-submit {
    width: 100%;
}

.map-section {
    padding: 0;
    height: 500px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
}

/* FAQ */
.faq-section {
    padding: 6rem 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.05);
}

.faq-question i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer-content {
    padding: 0 2.5rem 2rem;
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.9;
}

/* Legal Pages */
.legal-section {
    padding: 6rem 0;
}

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

.legal-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--gray-900);
}

.legal-content p {
    font-weight: 300;
    color: var(--gray-700);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.legal-content ul, .legal-content ol {
    margin: 1.5rem 0;
    padding-left: 2.5rem;
}

.legal-content li {
    font-weight: 300;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.last-updated {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border-left: 4px solid var(--primary-purple);
    border-radius: 8px;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
    
    .content-split,
    .methodology-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 0;
        box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
        display: none;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        padding: 1rem 24px;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    }
    
    .nav-menu a::before {
        display: none;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 90%;
        text-align: center;
    }
    
    .feature-grid,
    .methods-grid,
    .testimonial-grid,
    .stats-grid,
    .team-grid,
    .benefits-grid,
    .courses-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .content-text h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-accept {
        width: 100%;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}
