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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #02d3f7, #c281f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #02d3f7;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #c281f7;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}
option {
    background-color: #0a0a0a;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #02d3f7, #c281f7);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(2, 211, 247, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 211, 247, 0.4);
}

.btn-secondary {
    background: rgba(194, 129, 247, 0.2);
    color: #c281f7;
    border: 1px solid #c281f7;
}

.btn-secondary:hover {
    background: #c281f7;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #02d3f7;
    border: 1px solid #02d3f7;
}

.btn-outline:hover {
    background: #02d3f7;
    color: #ffffff;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(2, 211, 247, 0.2);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #02d3f7;
}

.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

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

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #02d3f7;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #02d3f7;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 0 50px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #b0b0b0;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: block;
}

/* Company Info Section */
.company-info {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(2, 211, 247, 0.05), rgba(194, 129, 247, 0.05));
}

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

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(2, 211, 247, 0.2);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #02d3f7;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
}

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

.advantage-card {
    text-align: center;
    padding: 2rem;
    background: rgba(194, 129, 247, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(194, 129, 247, 0.2);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: #c281f7;
    box-shadow: 0 10px 30px rgba(194, 129, 247, 0.2);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(194, 129, 247, 0.05), rgba(2, 211, 247, 0.05));
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(2, 211, 247, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #02d3f7, #c281f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #b0b0b0;
}

/* Popular Course Section */
.popular-course {
    padding: 100px 0;
}

.course-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.course-meta {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    color: #b0b0b0;
}

.rating {
    color: #ffd700;
}

.course-features {
    margin: 2rem 0;
}

.feature {
    margin: 0.5rem 0;
    color: #02d3f7;
}

.course-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.2rem;
}

.new-price {
    font-size: 2rem;
    font-weight: 700;
    color: #02d3f7;
}

.discount {
    background: #c281f7;
    color: #ffffff;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: 600;
}

.course-start {
    margin: 1.5rem 0;
    color: #c281f7;
}

.course-img {
    width: 100%;
    max-width: 300px;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(2, 211, 247, 0.05), rgba(194, 129, 247, 0.05));
}

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

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(2, 211, 247, 0.2);
}

.review-rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author strong {
    color: #02d3f7;
}

.review-author span {
    display: block;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

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

.faq-item {
    background: rgba(194, 129, 247, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(194, 129, 247, 0.2);
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(194, 129, 247, 0.1), rgba(2, 211, 247, 0.1));
}

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

.newsletter-form {
    margin-top: 2rem;
}

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

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(2, 211, 247, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
}

input[type="checkbox"] {
    width: auto;
}

.form-group input::placeholder {
    color: #b0b0b0;
}

.form-group input:focus {
    outline: none;
    border-color: #02d3f7;
    box-shadow: 0 0 10px rgba(2, 211, 247, 0.3);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(2, 211, 247, 0.2);
}

.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: #02d3f7;
    margin-bottom: 1rem;
}

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

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

.social-link:hover {
    color: #02d3f7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c281f7;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-top: 1px solid rgba(2, 211, 247, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(2, 211, 247, 0.3);
    max-width: 500px;
    width: 90%;
}

.cookie-option {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-option span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Courses Page Styles */
.course-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(194, 129, 247, 0.05), rgba(2, 211, 247, 0.05));
}

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

.category-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(2, 211, 247, 0.2);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #02d3f7;
    box-shadow: 0 10px 30px rgba(2, 211, 247, 0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.category-count {
    background: linear-gradient(135deg, #02d3f7, #c281f7);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.course-filters {
    padding: 60px 0;
    background: rgba(10, 10, 10, 0.8);
}

.filters-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    color: #b0b0b0;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-group select {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(2, 211, 247, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    min-width: 150px;
}

.filter-group select:focus {
    outline: none;
    border-color: #02d3f7;
    box-shadow: 0 0 10px rgba(2, 211, 247, 0.3);
}

.courses-grid-section {
    padding: 80px 0;
}

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

.course-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(2, 211, 247, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-5px);
    border-color: #02d3f7;
    box-shadow: 0 15px 40px rgba(2, 211, 247, 0.2);
}

.course-card.featured {
    border-color: #c281f7;
    background: rgba(194, 129, 247, 0.1);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #c281f7, #02d3f7);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.course-image {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(2, 211, 247, 0.1), rgba(194, 129, 247, 0.1));
    text-align: center;
}

.course-img {
    width: 80px;
    height: 80px;
}

.course-content {
    padding: 2rem;
}

.course-category {
    background: rgba(2, 211, 247, 0.2);
    color: #02d3f7;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.course-title {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
}

.rating-score {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.course-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.course-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    background: rgba(194, 129, 247, 0.1);
    color: #c281f7;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.course-instructor {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.instructor-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-price {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #02d3f7;
}

.old-price {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
}

.discount {
    background: #c281f7;
    color: #ffffff;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.courses-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(2, 211, 247, 0.1), rgba(194, 129, 247, 0.1));
    text-align: center;
}

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

.courses-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* About Page Styles */
.about-company {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(2, 211, 247, 0.05), rgba(194, 129, 247, 0.05));
}

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

.about-content {
    max-width: none;
}

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

.about-img {
    width: 200px;
    height: 200px;
    opacity: 0.6;
}

.mission-vision {
    padding: 80px 0;
}

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

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(2, 211, 247, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: #02d3f7;
    box-shadow: 0 15px 40px rgba(2, 211, 247, 0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: block;
}

.values {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(194, 129, 247, 0.05), rgba(2, 211, 247, 0.05));
}

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

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(194, 129, 247, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #c281f7;
    box-shadow: 0 10px 30px rgba(194, 129, 247, 0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.teachers {
    padding: 100px 0;
}

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

.teacher-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(2, 211, 247, 0.2);
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-5px);
    border-color: #02d3f7;
    box-shadow: 0 15px 40px rgba(2, 211, 247, 0.2);
}

.teacher-avatar {
    flex-shrink: 0;
}

.teacher-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(2, 211, 247, 0.3);
}

.teacher-info h3 {
    color: #02d3f7;
    margin-bottom: 0.5rem;
}

.teacher-role {
    color: #c281f7;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.teacher-speciality {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.teacher-bio {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.course-tag {
    background: linear-gradient(135deg, rgba(2, 211, 247, 0.2), rgba(194, 129, 247, 0.2));
    color: #02d3f7;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(2, 211, 247, 0.3);
}

.about-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(2, 211, 247, 0.05), rgba(194, 129, 247, 0.05));
}

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

.about-stats .stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.stat-desc {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.partnerships {
    padding: 100px 0;
}

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

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(194, 129, 247, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: #c281f7;
    box-shadow: 0 10px 30px rgba(194, 129, 247, 0.2);
}

.partner-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.partner-card h3 {
    color: #02d3f7;
    margin-bottom: 1rem;
}

.partner-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    /* Courses Page Mobile Styles */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .filters-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group select {
        min-width: 200px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .course-card {
        margin: 0 1rem;
    }
    
    .course-content {
        padding: 1.5rem;
    }
    
    .course-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .course-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    /* About Page Mobile Styles */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-card {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .teachers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .teacher-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-card {
        padding: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(2, 211, 247, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .course-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .course-pricing {
        justify-content: center;
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cookie-buttons .btn {
        width: 200px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr !important;
    }
    .legal-content {
        padding: 0 !important;
        border: none !important;
        background-color: transparent !important;
    }
    .cookie-table {
        display: none;
    }
}
