/* Thiết lập cơ bản */
:root {
    --primary-color: #1a237e; /* Xanh Navy đậm */
    --secondary-color: #ff5722; /* Cam đất/Terracotta */
    --text-color: #333;
    --light-bg: #f5f5f5;
    --cta-bg: #ff5722;
    --cta-hover: #e64a19;
}

/* THÊM BOX SIZING ĐỂ ĐẢM BẢO LAYOUT FLEXBOX/GRID HOẠT ĐỘNG CHÍNH XÁC */
*,
*::before,
*::after {
    box-sizing: border-box; 
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: white;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* 1. HEADER & NAVIGATION */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    overflow: visible; /* Quan trọng để hiện menu con */
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0; 
}

.home-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.home-link:hover {
    opacity: 0.8; 
}

.logo-img {
    width: 40px; 
    height: 40px;
    margin-right: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column; 
    line-height: 1.1;
}

.brand-name {
    font-size: 1.1rem; 
    font-weight: 700;
    color: var(--primary-color);
}

.sub-brand {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
    justify-content: center;
}

.main-nav a {
    margin: 0 10px; 
    font-size: 1rem; 
    font-weight: 500;
    white-space: nowrap; 
    display: flex;
    align-items: center;
    height: 38px; 
    padding: 0 5px; 
}

.nav-cta-btn {
    background-color: var(--secondary-color);
    color: white !important;
    padding: 8px 15px; 
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-left: 10px; 
}

.nav-cta-btn:hover {
    background-color: #e64a19;
}

.lang-switcher {
    margin-left: 30px; 
    flex-shrink: 0; 
}

.lang-btn {
    border: 1px solid var(--primary-color);
    padding: 5px 8px;
    margin-left: 5px;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary-color) !important;
    cursor: pointer;
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: white !important;
}

/* =======================================
   NAV DROPDOWN STYLES (Phần Course) - FIX
   ======================================= */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: flex;
    align-items: center;
    padding: 0 5px;
}
.dropbtn i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.dropdown-content {
    display: none; /* Mặc định ẩn */
    position: absolute;
    top: 100%; /* Hiện ngay dưới nút cha */
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 8px;
    border-top: 3px solid var(--secondary-color);
    padding: 10px 0;
    z-index: 1100;
}

@media (min-width: 769px) {
    .nav-dropdown:hover .dropdown-content {
        display: block;
    }
}

/* Hiển thị khi Click (dành cho Mobile/JS) */
.nav-dropdown.is-open .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--text-color) !important;
    padding: 12px 20px !important;
    display: block !important;
    font-size: 0.9rem !important;
    transition: background 0.2s;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color) !important;
}

/* Chỉnh sửa link bên trong dropdown-content (ghi đè nav a) */
.dropdown-content a {
    color: var(--text-color) !important;
    padding: 12px 16px !important; /* Quan trọng để ghi đè padding 0 5px của nav a */
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    height: auto;
    transition: background-color 0.1s;
    margin: 0 !important; /* Quan trọng để ghi đè margin 0 10px của nav a */
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color) !important;
}

/* Hiển thị dropdown khi hover */
.nav-dropdown:hover .dropdown-content {
    display: block;
}
/* ======================================= */


/* 2. HERO SECTION */
.hero-section {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background-color: var(--light-bg);
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    max-width: 55%;
}

.hero-image-placeholder {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-hero-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-slogan {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: normal;
}

.hero-benefits {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.main-cta-btn {
    display: inline-block;
    background-color: var(--cta-bg);
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.main-cta-btn:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
}

.cta-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* 2. PROBLEM SECTION */
.problem-section {
    padding: 60px 5%;
    text-align: center;
}

.problem-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.problem-list {
    display: flex; 
    justify-content: center;
    flex-wrap: wrap; 
    gap: 25px; 
    margin-bottom: 30px;
    max-width: 1000px; 
    margin-left: auto;
    margin-right: auto;
}

.problem-item {
    background-color: #fff9f9; 
    border: 1px solid #ffcccb; 
    border-radius: 10px;
    padding: 25px;
    width: calc(50% - 12.5px); 
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.1); 
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color); 
    text-align: center;
    line-height: 1.6;
}

.icon-problem {
    color: var(--secondary-color); 
    font-size: 2rem; 
    margin-bottom: 15px;
    display: block; 
    width: 100%;
}

.problem-item p {
    font-size: 1rem;
    font-weight: bold; 
    color: var(--primary-color); 
}

.problem-transition {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 40px;
    font-weight: bold;
}

/* 3. SOLUTION SECTION */
.solution-section {
    padding: 80px 5%;
    background-color: var(--light-bg); 
    text-align: center;
}

.solution-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.solution-item {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background-color: white; 
    border-radius: 12px;
    border: 1px solid var(--light-bg); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s;
}

.solution-item:hover {
    transform: translateY(-8px); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.solution-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color); 
    margin-bottom: 15px;
    font-weight: 700;
}

.icon-solution {
    color: var(--secondary-color); 
    font-size: 1.6rem;
    margin-right: 10px;
}

.solution-item p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7; 
}

.secondary-cta-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    padding: 12px 25px;
    border-radius: 8px;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-weight: bold;
}

.secondary-cta-btn:hover {
    background-color: #0d1259; 
}


/* PHẦN 4: GIÁO TRÌNH */
.program-section {
    padding: 80px 5%;
    text-align: center;
    background-color: white; 
}

.program-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.step-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
    position: relative;
    padding: 20px;
    background-color: var(--light-bg); 
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

.step-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.step-icon {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-top: 15px;
}


/* PHẦN 5: GIỚI THIỆU GIÁO VIÊN (CONCEPT 5: SINGLE CARD WITH EMBEDDED VIDEO) */
.teachers-section {
    padding: 80px 5%;
    background-color: white; 
    text-align: center;
}

.teachers-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

/* KHUNG NỔI CHÍNH (SINGLE CARD) */
.teacher-combined-card {
    max-width: 800px; 
    margin: 0 auto 50px auto;
    background-color: var(--light-bg); 
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    text-align: center;
}

.teacher-card-header {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.teacher-photo-small {
    width: 100px; 
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    flex-shrink: 0;
}

.teacher-header-text {
    text-align: left;
}

.teacher-header-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

.teacher-headline-full {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    margin: 5px 0 0 0;
}

.teacher-card-body {
    text-align: left;
}

.teacher-bio-full {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
}

.teacher-video-embed-in-card {
    margin-bottom: 30px;
    text-align: center;
}
.teacher-video-embed-in-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-cta-btn.is-contact-in-card {
    display: inline-flex;
    margin-top: 15px;
    background-color: var(--primary-color);
    font-size: 1.1rem;
    padding: 12px 25px;
}
.main-cta-btn.is-contact-in-card:hover {
    background-color: #0d1259;
}


/* --- BANNER TUYỂN DỤNG --- */
.recruitment-banner {
    max-width: 800px; 
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff9f9; 
    border: 1px solid #ffcccb;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.1);
    text-align: left;
}

.recruitment-text h3 {
    color: var(--secondary-color);
    margin-top: 0;
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.recruitment-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.is-recruiting-cta {
    flex-shrink: 0;
    background-color: var(--secondary-color);
}
.ai-generated-img {
    display: block;       /* Biến ảnh thành khối để dùng được margin auto */
    margin-left: auto;    /* Căn giữa bên trái */
    margin-right: auto;   /* Căn giữa bên phải */
    margin-top: 5%;
    /* margin-bottom: 5%; */
    min-width: 40%;       /* Độ rộng tối thiểu là 40% của phần tử cha */
    height: auto;         /* Giữ đúng tỉ lệ khung hình của ảnh */
    max-width: 100%;

}
/* PHẦN 6: CÁC KHÓA HỌC CHÍNH (Đã được thêm vào index.html ở bước trước) */
/* .courses-section  {
    padding: 80px 5%;
    text-align: center;
    background-color: var(--light-bg); 
} */
 .courses-section-1 { 
    /* padding: 80px 5%; */
    margin-left: 10%;
    text-align: left;
 }
 .course-features {
    /* margin-top: 30px; */
    padding: 20px 2%;
    /* margin-bottom: 30px; */
 }
 .container {
    text-align: center;
    padding: 80px 5%;
    /* margin-left: 50px; */
    /* margin-top: 30px;
    margin-bottom: 30px; */
 }

.courses-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.course-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* --- PHẦN KHÓA HỌC (ĐÃ CẬP NHẬT) --- */
.course-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    width: calc(25% - 22.5px); 
    min-width: 250px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid var(--primary-color);
    
    /* Hiệu ứng mượt mà khi di chuột */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; /* Hiện bàn tay để khách biết có thể nhấn vào cả hộp */
}

.course-card:hover {
    transform: translateY(-10px); /* Nổi lên cao hơn một chút (-10px thay vì -5px) */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.course-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.course-card h3 {
    content: attr(data-en);
    white-space: pre-wrap;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.course-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    min-height: 80px; 
}

/* Định dạng nút Learn More */
.course-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
}

/* Hiệu ứng khi di chuột vào CARD thì NÚT tự đổi màu */
.course-card:hover .course-cta {
    background-color: var(--secondary-color);
    color: white;
}


/* 4. FOOTER */
.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 5%;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.social-icon {
    color: white;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--secondary-color);
}

.social-icon i {
    margin-right: 8px;
}

.policy-link {
    color: rgba(255, 255, 255, 0.7); 
    font-size: 0.9rem;
    margin-top: 10px;
}

.policy-link:hover {
    color: var(--secondary-color);
}

.copyright {
    margin-top: 20px;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}


/* Media Queries cho màn hình nhỏ hơn */
@media (max-width: 992px) {
    .solution-grid {
        flex-direction: column;
        gap: 20px;
    }
    .steps-grid {
        flex-direction: column;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .step-item {
        max-width: 100%;
        margin-bottom: 20px;
    }
    /* PHẦN 6: COURSES (2 cột trên tablet) */
    .course-card {
        width: calc(50% - 15px); 
        min-width: 45%;
    }
}

/* Ẩn nút Hamburger trên Desktop */
.mobile-toggle-btn {
    display: none !important;
}
.course-btn-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    /* --- 1. THU NHỎ CHỮ & CĂN CHỈNH CHUNG --- */
    body { 
        padding-top: 70px !important; 
        overflow-x: hidden !important; 
    }
    
    .hero-title { font-size: 1.5rem !important; line-height: 1.3 !important; }
    .hero-slogan { font-size: 1.1rem !important; }
    h2 { font-size: 1rem !important; margin-bottom: 10px !important; }

    /* --- 2. HEADER: LOGO - LANG - HAMBURGER --- */
    .main-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 60px !important;
        padding: 0 15px !important;
    }

    .logo-container { flex: 1; justify-content: flex-start !important; }
    .logo-img { width: 30px !important; height: 30px !important; }
    .brand-name { font-size: 0.85rem !important; }
    .sub-brand { display: none !important; }

    /* Giữ lang-switcher ở giữa trên mobile */
    .lang-switcher {
        flex: 1;
        display: flex !important;
        justify-content: center !important;
        margin: 0 !important;
    }
    .lang-btn { padding: 4px 6px !important; font-size: 0.7rem !important; }

    .mobile-toggle-btn {
        display: block !important;
        flex: 1;
        text-align: right;
        background: none;
        border: none;
        font-size: 1.4rem;
        color: var(--primary-color);
    }

    /* --- 3. MENU HAMBURGER CĂN GIỮA --- */
    .main-nav {
        display: none !important;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column !important;
        padding: 20px 0 !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        text-align: center !important;
    }
    .main-nav.active { display: flex !important; }
    .main-nav a {
        width: 100% !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid #f5f5f5;
        justify-content: center !important;
    }

    /* --- 4. ÉP TOÀN BỘ NỘI DUNG VỀ 1 CỘT (FIX LỖI 2 CỘT) --- */
    .hero-section, 
    .problem-list, 
    .solution-grid, 
    .steps-grid, 
    .course-grid,
    .footer-content {
        display: flex !important;
        flex-direction: column !important; /* Ép về 1 cột dọc */
        align-items: center !important;
        width: 100% !important;
        gap: 20px !important;
        padding: 20px 5% !important;
    }

    /* Đảm bảo mỗi item chiếm 100% chiều ngang */
    .problem-item, 
    .solution-item, 
    .step-item, 
    .course-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        min-height: auto !important;
    }

    /* Thu nhỏ ảnh Hero trên mobile */
    .hero-image-placeholder { order: -1; margin-bottom: 20px; }
    .main-hero-img { max-width: 80% !important; }

    /* Bảng học phí: cho phép cuộn ngang để không vỡ khung */
    .pricing-table-wrapper {
        width: 100% !important;
        overflow-x: auto !important;
    }
    .pricing-table { min-width: 500px; }
    .hero-content {
        flex: 1;
        max-width: 90%;
        text-align: center !important; 
    }
    .main-cta-btn {
        font-size: 0.9rem;
        text-align: center !important; 
        /* padding: 20px 20px; */
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 15px;
    }
    .cta-note {
        margin-top: 10px;
        font-size: 0.8rem;
        text-align: center;
    }
    .recruitment-banner {
        flex-direction: column !important; /* Đổi từ ngang sang dọc */
        text-align: center !important;     /* Căn giữa chữ */
        padding: 20px !important;          /* Thu nhỏ padding cho đỡ chiếm diện tích */
        gap: 20px !important;              /* Tạo khoảng cách giữa chữ và nút */
        width: 100% !important;
        max-width: 100% !important;
    }

    .recruitment-text {
        width: 100% !important;
    }

    .recruitment-text h3 {
        font-size: 1.2rem !important;      /* Thu nhỏ tiêu đề banner */
    }

    .is-recruiting-cta {
        width: 100% !important;            /* Nút bấm giãn ra hết chiều ngang cho dễ chạm */
        justify-content: center !important;
    }
    .nav-dropdown  {
        display: none
    }

    /* Tăng độ ưu tiên cho các mục menu chính */
    .main-nav a {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .problem-section {
        padding: 15px;
        text-align: center;
    }

    .problem-section h2 {
        font-size: 0.5rem;
        color: var(--primary-color);
        margin-bottom: 25px;
        margin-top: 25px;
    }
    .problem-transition {
        font-size: 1rem;
        color: var(--secondary-color);
        margin-top: 10px;
        font-weight: bold;
        padding: 10px 10px;
    }
    .problem-item {
        background-color: #fff9f9; 
        border: 1px solid #ffcccb; 
        border-radius: 10px;
        padding: 10px;
        width: calc(50% - 12.5px); 
        box-shadow: 0 4px 10px rgba(255, 87, 34, 0.1); 
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-color); 
        text-align: center;
        line-height: 1.6;
    }

    .icon-problem {
        color: var(--secondary-color); 
        font-size: 2rem; 
        margin-bottom: 10px;
        display: block; 
        width: 100%;
    }

    .problem-item p {
        font-size: 1rem;
        font-weight: bold; 
        color: var(--primary-color); 
    }
    .solution-section {
        padding: 25px;
        background-color: var(--light-bg); 
        text-align: center;
    }
    .solution-grid {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 1rem;
    }
    .solution-item {
        flex: 1;
        text-align: center;
        padding: 10px 10px;
        font-size: 1rem;
        background-color: white; 
        border-radius: 8px;
        border: 1px solid var(--light-bg); 
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); 
        transition: transform 0.3s;
    }
    .teachers-section {
        padding: 20px;
        background-color: white; 
        text-align: center;
    }

    .teachers-section h2 {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-bottom: 30px;
    }
    .courses-section {
        padding: 20px;
        text-align: center;
        background-color: var(--light-bg); 
    }
    .container {
        margin-top: -80px;
        margin-bottom: -80px;
        text-align: center;
    }

    .courses-section h2 {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 50px;
    }
    .course-grid {
        margin-bottom: 10px;
    }
    .steps-grid {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }
    .program-section {
        margin-bottom: -80px;
    }
    .program-section h2 {
        font-size: 1rem;
        color: var(--primary-color);
        margin-bottom: 50px;
    }
    .courses-section-1 { 
        padding: 20px 5%;
        margin-left: 0%;
        margin-top: auto;
        margin-bottom: 0px;
        padding-bottom: 20px;
        text-align: left !important;
        /* align-items: center; */
        /* justify-content: left; */
        /* justify-items: center; */
    }
    .courses-btn {
        display: flex !important;
        flex-direction: column !important; /* Ép 2 thẻ a xếp thành 1 cột dọc */
        align-items: center !important;    /* Căn giữa 2 thẻ a theo chiều ngang */
        justify-content: center !important; /* Căn giữa theo chiều dọc nếu có height */
        gap: 10px !important;              /* Khoảng cách giữa thẻ trên và thẻ dưới */
        width: 100% !important;
    }
    .ai-generated-img {
        margin-top: 60px;
        margin-bottom: auto;
        /* margin-bottom: 5%; */
        min-width: 40%;       /* Độ rộng tối thiểu là 40% của phần tử cha */
        height: auto;         /* Giữ đúng tỉ lệ khung hình của ảnh */
        max-width: 100%;
        padding: auto;
    }
    /* .feature-item{
        margin-top: 200px;
    }
    .secondary-cta-btn {
        margin-top: 200px;
    } */
    .course-features {
        /* margin-top: 30px; */
        margin-top: 70px;
        /* margin-bottom: 30px; */
    }
    .container h2 {
        font-size: 1.2em !important;
        margin-bottom: 30px !important;
    }
    .course-features-kids {
        /* margin-top: 30px; */
        margin-top: 10px;
        /* margin-bottom: 30px; */
    }
    .container {
        padding: 20px;
    }
    .detail-content h1 {
        text-align: center;
        font-size: 1.5em; 
    }
}