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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid #fbbf24;
}

.navbar {
    padding: 1rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    outline: none !important;
    opacity: 1 !important;
}

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

.logo-container:focus {
    outline: none;
    box-shadow: none;
}

.logo-container:active {
    outline: none;
    box-shadow: none;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    opacity: 1 !important;
}

.nav-logo h2 {
    color: #1f2937;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #fbbf24;
}

.format-link{
    text-decoration: none;
    color: #374151;
    transition: color 0.3s ease;
}

.format-link:hover {
    color: #fbbf24;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    border: 1px solid #f3f4f6;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #fef3c7;
    color: #92400e;
}

.phone-link {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
    align-items: flex-end;
}

.phone-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
    min-height: 2rem;
    justify-content: center;
}

.nav-contact .phone-link {
    font-size: 1rem;
    line-height: 1.2;
}

.social-section {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-section .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-section .social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-section .social-link:active {
    transform: scale(0.95);
}

.social-section .social-link.telegram {
    background: #0088cc;
}

.social-section .social-link.viber {
    background: #7360f2;
}

.social-section .social-link.whatsapp {
    background: #25d366;
}

.social-section .social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 1%, #FEDA7A 100%);
    color: #1f2937;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #fbbf24;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.3);
    transition: box-shadow 0.3s ease;
    opacity: 1 !important;
}

.hero-logo:hover {
    box-shadow: 0 25px 50px rgba(251, 191, 36, 0.4);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

.hero-highlight {
    background: rgba(251, 191, 36, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #fbbf24;
    border: 2px solid #fbbf24;
}

.hero-highlight p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #92400e;
}

.hero-highlight p:last-child {
    margin-bottom: 0;
}

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

.language-item {
    background: #fbbf24;
    color: #92400e;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #f59e0b;
}

.language-item:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button.primary {
    background: #fbbf24;
    color: #92400e;
    border: 2px solid #f59e0b;
}

.cta-button.primary:hover {
    background: #f59e0b;
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: #fbbf24;
    border: 2px solid #fbbf24;
}

.cta-button.secondary:hover {
    background: #fbbf24;
    color: #92400e;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Level Test Section - Enhanced with Animations */
.level-test {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 50%, #FCCE65 100%);
    padding: 100px 0;
    text-align: center;
    border-bottom: 3px solid #fbbf24;
    position: relative;
    overflow: hidden;
}

.level-test::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="90" r="1.5" fill="%23ffffff" opacity="0.1"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.level-test::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="70" cy="30" r="1.5" fill="%23ffffff" opacity="0.05"/><circle cx="30" cy="70" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="85" cy="85" r="1.5" fill="%23ffffff" opacity="0.05"/></svg>');
    animation: float 25s ease-in-out infinite reverse;
}

.level-test-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.3);
    border: 3px solid #fbbf24;
    backdrop-filter: blur(10px);
    animation: slideInUp 1s ease-out;
}

.test-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

.test-icon i {
    font-size: 2rem;
    color: #92400e;
}

.test-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 2px solid #fbbf24;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature:nth-child(2) {
    animation-delay: 0.8s;
}

.feature:nth-child(3) {
    animation-delay: 1s;
}

.feature:hover {
    background: rgba(251, 191, 36, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.feature i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.feature span {
    color: #1f2937;
    font-weight: 600;
    font-size: 1rem;
}

.test-description {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.level-test-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.level-test .cta-button {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #92400e;
    padding: 1.2rem 2.5rem;
    border: 3px solid #f59e0b;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto;
}

.level-test .cta-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.level-test .cta-button:hover i {
    transform: scale(1.2);
}

.level-test .cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.test-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.8s;
}

.benefit-item:nth-child(3) {
    animation-delay: 1s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
    border-color: #f59e0b;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #92400e;
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.test-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item:nth-child(2) {
    animation-delay: 1.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 1.6s;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(251, 191, 36, 0.3);
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out 1.8s both;
}

.stat-label {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.4;
}

.test-cta {
    text-align: center;
    animation: fadeInUp 1s ease-out 1.8s both;
}

.cta-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1rem;
    font-style: italic;
}

/* Floating animation for background elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Glow animation for the title */
@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(251, 191, 36, 0.8), 0 0 30px rgba(251, 191, 36, 0.6);
    }
}

/* Pulse animation for the button */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Slide in animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Course Formats Section */
.course-formats {
    background: #fef3c7;
    padding: 80px 0;
    border-bottom: 3px solid #fbbf24;
}

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

.format-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #f3f4f6;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
}

.format-card.featured {
    border: 3px solid #fbbf24;
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
}

.format-card.featured:hover {
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.3);
}

.format-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #fbbf24;
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #f59e0b;
}

.format-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.format-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.format-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fbbf24;
}

.duration {
    font-size: 0.9rem;
    color: #6b7280;
}

.format-features {
    flex: 1;
    min-height: 200px;
}

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

.format-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.format-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
    font-size: 1.1rem;
}

.format-footer {
    text-align: center;
    margin-top: auto;
    padding-top: 1rem;
}

.payment-info {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.format-button {
    width: 100%;
    padding: 1rem;
    border: 2px solid #fbbf24;
    background: #fbbf24;
    color: #92400e;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.format-button:hover {
    background: #f59e0b;
    color: white;
    transform: translateY(-2px);
}

.format-button.primary {
    background: #fbbf24;
    color: #92400e;
    border-color: #f59e0b;
}

.format-button.primary:hover {
    background: #f59e0b;
    color: white;
}

/* Personal Selection Section */
.personal-selection {
    background: #fff;
    padding: 80px 0;
    border-bottom: 3px solid #fbbf24;
}

.personal-selection .section-title,
.personal-selection .section-subtitle {
    text-align: center;
}

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

.step-item {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f3f4f6;
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #fbbf24;
    color: #92400e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    border: 3px solid #f59e0b;
}

.step-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.selection-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Features Section */
.features {
    background: #ffffff;
    padding: 80px 0;
    border-bottom: 2px solid #f3f4f6;
}

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

.feature-card {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #fde68a;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
}

.feature-icon {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #92400e;
}

.feature-card p {
    color: #4b5563;
    font-size: 1.1rem;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Section */
.why-choose {
    background: #fef3c7;
    padding: 80px 0;
    border-bottom: 3px solid #fbbf24;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid #f3f4f6;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
}

.benefit-icon {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
}

/* Certificate Section */
.certificate {
    background: #ffffff;
    padding: 80px 0;
    border-bottom: 2px solid #f3f4f6;
}

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

.certificate-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.certificate-text p {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

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

.certificate-image i {
    font-size: 8rem;
    color: #fbbf24;
}

/* Founder Section */
.founder {
    background: #fef3c7;
    padding: 80px 0;
    border-bottom: 3px solid #fbbf24;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    position: relative;
}

.founder-image {
    align-self: center;
}

.founder-avatar {
    position: static;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.founder-photo {
    width: 350px;
    height: 450px;
    border-radius: 12px;
    opacity: 1 !important;
}

.founder-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.founder-title {
    font-size: 1.2rem;
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 2rem;
}

.founder-info {
    margin-bottom: 2rem;
}

.founder-detail {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid #fde68a;
    transition: all 0.3s ease;
}

.founder-detail:hover {
    border-color: #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
}

.founder-detail h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.founder-detail h3 i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.founder-detail p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.founder-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    background: #ffffff;
    padding: 80px 0;
    border-bottom: 2px solid #f3f4f6;
}

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

.review-card {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid #fde68a;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-stars {
    color: #fbbf24;
}

.review-date {
    font-size: 0.9rem;
    color: #6b7280;
}

.review-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-author strong {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.review-author span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Teachers Section - Highlighted with Yellow */
/* === Teachers — Oval Photo + Rectangular Panel === */
:root {
    --avatar-w: 280px;
    --avatar-h: 360px;
    --panel-radius: 16px;
    --panel-padding: 1.5rem;
    --gap: 1.25rem;
    --accent: #f59e0b;
    --accent-soft: #fde68a;
    --accent-shadow: rgba(251, 191, 36, .18);
    --ink: #111827;
    --muted: #374151;
    --paper: #ffffff;
    --paper-soft: #fffbea;
  }
  
  .teachers--oval .section-title {
    text-align: center;
    margin: 0 0 2rem 0;
  }
  
  .teachers--oval .teachers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .teachers--oval .teacher-card {
    position: relative;
    display: grid;
    grid-template-columns: var(--avatar-w) 1fr;
    align-items: center;
    gap: var(--gap);
  }
  
  .teachers--oval .teacher-avatar {
    width: var(--avatar-w);
    height: var(--avatar-h);
    border-radius: 999px / 9999px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
    background: #f3f4f6;
  }
  
  .teachers--oval .teacher-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1 !important;
  }
  
  .teachers--oval .teacher-panel {
    background: var(--paper);
    border: 2px solid #11111110;
    border-radius: var(--panel-radius);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .06), 0 10px 30px var(--accent-shadow);
  }
  
  .teachers--oval .teacher-content {
    padding: var(--panel-padding);
  }
  
  .teachers--oval .teacher-content h3 {
    margin: 0 0 .25rem 0;
    font-size: 1.35rem;
    color: var(--ink);
  }
  
  .teachers--oval .teacher-role {
    margin: 0 0 1rem 0;
    font-weight: 600;
    color: var(--accent);
  }
  
  .teachers--oval .teacher-badges {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin: 0 0 1rem 0;
    padding: 0;
  }
  
  @media (max-width: 640px) {
    .teachers--oval .teacher-badges {
      grid-template-columns: 1fr;
    }
  }
  
  .teachers--oval .teacher-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem .8rem;
    border: 1px solid var(--accent-soft);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 10px var(--accent-shadow);
  }
  
  .teachers--oval .teacher-badge i {
    width: .75rem;
    height: .75rem;
    border-radius: 999px;
    display: inline-block;
    background: currentColor;
    color: #fbbf24;
    flex-shrink: 0;
  }
  
  .teachers--oval .teacher-badge span {
    color: var(--muted);
    font-size: .95rem;
  }
  
  .teachers--oval .teacher-quote {
    margin: .25rem 0 0 0;
    padding: .9rem 1rem;
    border-left: 4px solid #fbbf24;
    border: 1px solid var(--accent-soft);
    border-radius: 12px;
    background: var(--paper-soft);
    color: #4b5563;
    font-style: italic;
  }
  
  @media (max-width: 900px) {
    .teachers--oval .teacher-card {
      grid-template-columns: 1fr;
      justify-items: center;
    }
    .teachers--oval .teacher-panel {
      width: 100%;
    }
  }
  

/* Purchase Page Styles */
.purchase-header {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 4rem 0;
    text-align: center;
    color: #92400e;
    overflow: hidden;
}

.purchase-header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.purchase-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    flex-shrink: 0;
}

.purchase-icon i {
    font-size: 2rem;
    color: white;
}

.purchase-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
}

.purchase-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    word-wrap: break-word;
}

.payment-methods {
    padding: 4rem 0;
    background: white;
}

.payment-content {
    max-width: 1200px;
    margin: 0 auto;
}

.payment-info {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-info h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.payment-info p {
    font-size: 1.1rem;
    color: #6b7280;
}

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

.payment-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #f3f4f6;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
}

.payment-card.featured {
    border: 3px solid #fbbf24;
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
}

.payment-card.featured:hover {
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.3);
}

.payment-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #fbbf24;
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #f59e0b;
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.payment-icon i {
    font-size: 1.5rem;
    color: #92400e;
}

.payment-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
    text-align: center;
}

.payment-description {
    color: #6b7280;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.bank-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bank-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.bank-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.bank-detail-item .label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.bank-detail-item .value {
    color: #1f2937;
    font-family: 'Courier New', monospace;
    background: #f9fafb;
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    word-break: break-all;
}

.copy-section {
    margin-top: auto;
    text-align: center;
}

.copy-button {
    background: #fbbf24;
    color: #92400e;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-button:hover {
    background: #f59e0b;
    color: white;
    transform: translateY(-2px);
}

.card-payment-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.card-logos {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    color: #6b7280;
}

.card-note {
    color: #6b7280;
    font-size: 0.9rem;
    text-align: center;
}

.cash-payment-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cash-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 8px;
    border: 1px solid #fde68a;
    color: #92400e;
    font-size: 0.9rem;
}

.crypto-payment-info {
    flex: 1;
}

.crypto-addresses {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.crypto-address {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.crypto-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.crypto-value {
    color: #1f2937;
    font-family: 'Courier New', monospace;
    background: #f9fafb;
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    word-break: break-all;
    font-size: 0.8rem;
}

.payment-button {
    width: 100%;
    padding: 1rem;
    border: 2px solid #fbbf24;
    background: #fbbf24;
    color: #92400e;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.payment-button:hover {
    background: #f59e0b;
    color: white;
    transform: translateY(-2px);
}

.payment-button.primary {
    background: #fbbf24;
    color: #92400e;
    border-color: #f59e0b;
}

.payment-button.primary:hover {
    background: #f59e0b;
    color: white;
}

.payment-instructions {
    background: #f9fafb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.payment-instructions h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

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

.instruction-icon {
    width: 50px;
    height: 50px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #92400e;
    font-weight: 700;
    font-size: 1.2rem;
}

.instruction-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.instruction-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

.payment-help {
    background: linear-gradient(135deg, #fef3c7, #ffffff);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #fde68a;
}

.help-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.help-icon {
    width: 60px;
    height: 60px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-icon i {
    font-size: 1.5rem;
    color: #92400e;
}

.help-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.help-text p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.help-contacts {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.help-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.help-contact:hover {
    background: #fbbf24;
    color: #92400e;
    transform: translateY(-2px);
}

/* Crypto Modal Styles */
.crypto-qr-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.crypto-option {
    text-align: center;
    padding: 1.5rem;
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    background: #f9fafb;
}

.crypto-option h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.qr-code {
    margin: 1rem 0;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #6b7280;
}

.qr-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.qr-placeholder p {
    font-size: 0.8rem;
    margin: 0;
}

.crypto-address-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.crypto-address-display span {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #1f2937;
    word-break: break-all;
}

.copy-button.small {
    padding: 0.5rem;
    font-size: 0.8rem;
    min-width: auto;
}

/* Responsive Design for Purchase Page */
@media (max-width: 768px) {
    .purchase-header-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .purchase-header h1 {
        font-size: 2rem;
    }
    
    .payment-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-card {
        min-height: auto;
    }
    
    .instructions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .help-content {
        flex-direction: column;
        text-align: center;
    }
    
    .help-contacts {
        justify-content: center;
    }
    
    .crypto-qr-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .purchase-header {
        padding: 3rem 0;
    }
    
    .purchase-header-content {
        padding: 0 0.5rem;
    }
    
    .purchase-header h1 {
        font-size: 1.8rem;
    }
    
    .payment-card {
        padding: 1.5rem;
    }
    
    .bank-detail-item .value,
    .crypto-value {
        font-size: 0.7rem;
    }
}

/* Contact Section - Highlighted with Yellow */
.contact {
    background: #ffffff;
    padding: 80px 0;
    border-bottom: 3px solid #fbbf24;
}

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

.contact-item {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 3px solid #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.15);
    min-height: auto;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.3);
    border-color: #f59e0b;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid #f59e0b;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #92400e;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.phone-link {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #f59e0b;
}

.email-link {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    word-break: break-word;
}

.email-link:hover {
    color: #f59e0b;
}

.working-hours {
    color: #374151;
    line-height: 1.5;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fbbf24;
    color: #92400e;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #f59e0b;
}

.social-link.telegram {
    background: #0088cc;
    color: white;
    border-color: #006699;
}

.social-link.telegram:hover {
    background: #006699;
    transform: translateY(-2px);
}

.social-link.viber {
    background: #7360f2;
    color: white;
    border-color: #5a4bc4;
}

.social-link.viber:hover {
    background: #5a4bc4;
    transform: translateY(-2px);
}

.social-link.whatsapp {
    background: #25d366;
    color: white;
    border-color: #1ea952;
}

.social-link.whatsapp:hover {
    background: #1ea952;
    transform: translateY(-2px);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transition: all 0.3s ease;
}

.social-link.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

.social-link span {
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.footer-section p a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    border: 3px solid #fbbf24;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
}

.close:hover {
    color: #fbbf24;
}

.modal-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #fbbf24;
}

.submit-button {
    background: #fbbf24;
    color: #92400e;
    padding: 1rem;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #f59e0b;
    color: white;
    transform: translateY(-2px);
}

/* Language Selection Modal Styles */
.modal-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.language-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.language-selection::-webkit-scrollbar {
    width: 6px;
}

.language-selection::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.language-selection::-webkit-scrollbar-thumb {
    background: #fbbf24;
    border-radius: 3px;
}

.language-selection::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.language-option:hover {
    border-color: #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
}

.language-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.language-icon i {
    font-size: 1.2rem;
    color: #92400e;
}

.language-info {
    flex: 1;
}

.language-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.language-info p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.language-arrow {
    color: #fbbf24;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.language-option:hover .language-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-contact {
        gap: 0.25rem;
    }
    
    .social-section {
        gap: 0.25rem;
    }
    
    .social-section .social-link {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 2rem;
        opacity: 1;
        padding-left: 0;
    }
    
    .hero-logo {
        max-width: 80%;
        border-radius: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .languages-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .benefits-grid,
    .selection-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    
    .format-card.featured {
        order: -1;
    }
    
    .format-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .format-card {
        height: auto;
        min-height: auto;
    }
    
    .format-features {
        flex: none;
    }

    .founder-avatar {
        position: static;
        margin-bottom: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .founder-photo {
        width: 300px;
        height: 400px;
    }

    .founder-detail {
        text-align: left;
    }

    .level-test-content h2 {
        font-size: 2.2rem;
    }

    .test-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .test-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .test-features {
        flex-direction: column;
        gap: 1rem;
    }

    .feature {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-contact {
        gap: 0.2rem;
        align-items: center;
    }
    
    .phone-section {
        align-items: center;
        min-height: 1.5rem;
    }
    
    .social-section {
        gap: 0.2rem;
    }
    
    .social-section .social-link {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        max-width: 90%;
        border-radius: 12px;
    }
    
    .languages-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card h3,
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .format-card {
        padding: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .social-link {
        flex-direction: column;
        text-align: center;
        padding: 0.5rem;
    }
}

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

.feature-card,
.benefit-item,
.review-card,
.teacher-card,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #fbbf24;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

@media (min-width: 2000px) {

    .es-girl{
        max-width: 450px !important;
        position: absolute !important;
        top: -5px !important;
        left: -5px !important;
        opacity: 0;
    }

    .en-girl{
        position: absolute !important;
        max-width: 450px !important;
        top: 120px !important;
        right: 150px !important;
        opacity: 0;
    }
    
}


@media (max-width: 1999px) {

    .es-girl{
        width: 250px !important;
        max-width: 250px !important;
        position: absolute !important;
        top: -5px !important;
        left: -5px !important;
        opacity: 0;
    }

    
    .en-girl{
        position: absolute !important;
        width: 250px !important;
        max-width: 250px !important;
        top: 50px !important;
        right: 150px !important;
        opacity: 0;
    }
    
}


/* Decoration Images */
.decoration-image {
    opacity: 1 !important;
}

@media (max-width: 1549px) {

    .decoration-image {
        max-width: 150px;
        width: 150px;
        height: auto;
    }

    .es-girl{
        position: absolute !important;
        top: -5px !important;
        left: -5px !important;
        max-width: 150px !important;
        opacity: 0;
    }

    .contact-decoration {
        left: 175px !important;
        bottom: 85px !important;
    }


    .en-girl{
        position: absolute !important;
        width: 250px !important;
        max-width: 250px !important;
        top: 50px !important;
        right: 150px !important;
        opacity: 0;
    }
    
}


@media (max-width: 1275px) {
    
    .en-girl{
        position: absolute !important;
        width: 250px !important;
        max-width: 250px !important;
        top: 50px !important;
        right: 15px !important;
        opacity: 0;
    }
    
}

/* Responsive styles for decoration images on mobile */
@media (max-width: 768px) {
    
    .decoration-image {
        max-width: 150px;
        width: 150px;
        height: auto;
    }

    .es-girl{
        position: absolute !important;
        top: -20px !important;
        left: -20px !important;
        opacity: 0;
    }

    .en-girl{
        position: absolute !important;
        top: -5px !important;
        left: 5px !important;
        opacity: 0;
    }
    
    .founder-decoration {
        max-width: 200px !important;
        width: 200px !important;
        left: 10px !important;
        right: 10px !important;
    }
    
    .contact-decoration {
        max-width: 120px !important;
        width: 120px !important;
        bottom: 10px !important;
        right: 10px !important;
        left: auto !important;
        top: auto !important;
    }
}

@media (max-width: 480px) {
    .decoration-image {
        max-width: 100px;
        width: 100px;
        opacity: 0.6;
    }
    
    .founder-decoration {
        max-width: 150px !important;
        width: 150px !important;
        opacity: 0.5 !important;
        left: 5px !important;
        right: 5px !important;
        top: 10px !important;
        bottom: auto !important;
    }
    
    .contact-decoration {
        max-width: 80px !important;
        width: 80px !important;
        bottom: 5px !important;
        right: 5px !important;
        left: auto !important;
        top: auto !important;
    }
    
    /* Hide some decorations on very small screens to prevent text overlap */
    .founder-decoration:first-of-type {
        display: none;
    }
    
    /* Adjust positioning for images with left positioning */
    .decoration-image[style*="left"] {
        left: 5px !important;
    }
    
    .decoration-image[style*="top: -"] {
        top: 10px !important;
    }
}

/* Bounce animation for the test icon */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Count up animation for statistics */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Test Page Styles */
.test-header {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 4rem 0;
    text-align: center;
    color: #92400e;
    overflow: hidden;
}

.test-header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.test-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    flex-shrink: 0;
}

.test-logo i {
    font-size: 2rem;
    color: white;
}

.test-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
}

.test-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    word-wrap: break-word;
}

.test-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: white;
}

.info-item i {
    font-size: 1.1rem;
}

.test-instructions {
    padding: 4rem 0;
    background: white;
}

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

.instructions-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.instruction-item {
    padding: 2rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.instruction-item:hover {
    border-color: #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
}

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

.instruction-icon i {
    font-size: 1.5rem;
    color: #92400e;
}

.instruction-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.instruction-item p {
    color: #6b7280;
    line-height: 1.6;
}

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

.start-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.test-questions {
    padding: 4rem 0;
    background: #f9fafb;
    min-height: 60vh;
}

.test-progress {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    text-align: center;
    font-weight: 600;
    color: #6b7280;
}

.question-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.question-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    line-height: 1.6;
}

.answers-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.answer-option {
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.answer-option:hover {
    border-color: #fbbf24;
    background: #fef3c7;
}

.answer-option.selected {
    border-color: #fbbf24;
    background: #fef3c7;
}

.question-navigation {
    display: flex;
    justify-content: right;
    align-items: center;
}

.nav-button {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-button:hover:not(:disabled) {
    border-color: #fbbf24;
    color: #92400e;
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-button.primary {
    background: #fbbf24;
    border-color: #f59e0b;
    color: #92400e;
}

.nav-button.primary:hover {
    background: #f59e0b;
    color: white;
}

.test-results {
    padding: 4rem 0;
    background: white;
}

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

.results-header {
    margin-bottom: 3rem;
}

.results-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.results-icon i {
    font-size: 2rem;
    color: #92400e;
}

.results-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.results-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

.level-result {
    margin-bottom: 3rem;
}

.level-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #92400e;
    padding: 2rem 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.level-text {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.level-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.level-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

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

.score-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.score-label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.score-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.results-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.results-actions .cta-button {
    min-width: 250px;
}

/* Responsive styles for test pages */
@media (max-width: 900px) {
    .test-header-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .test-header h1 {
        font-size: 2rem;
    }
    
    .test-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .instructions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .question-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .question-header h3 {
        font-size: 1.1rem;
    }
    
    .question-navigation {
        flex-direction: column;
        gap: 1rem;
        justify-content: right;
    }
    
    .nav-button {
        width: 100%;
        justify-content: center;
    }
    
    .score-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .level-badge {
        padding: 1.5rem 2rem;
    }
    
    .level-text {
        font-size: 2.5rem;
    }
    
    .results-actions {
        padding: 0 1rem;
    }
    
    .results-actions .cta-button {
        min-width: auto;
        width: 100%;
    }
}
