/* CSS Variables for easier theme management */
:root {
    --primary-color: #285563;
    /* Màu xanh đậm cho menu, button chính */
    --secondary-color: #0b1446;
    /* Màu xanh đậm cho tiêu đề chính */
    --accent-color: #d879c2;
    /* Màu đỏ cho phụ đề, đường kẻ */
    --light-bg: #f0f2f5;
    /* Màu nền nhẹ cho body */
    --white: #ffffff;
    --text-color: #333;
    --light-grey-border: #e0e0e0;
    --dark-blue-contact: #5586bb;
    /* Màu xanh đậm cho phần liên hệ */
    --yellow-highlight: #a13790;
    /* Màu vàng nổi bật */
}

/* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--light-bg);
    color: var(--text-color);
}

/* GLOBAL LINK STYLES - Ensures no underline by default */
a {
    text-decoration: none;
    /* RẤT QUAN TRỌNG: Bỏ gạch chân mặc định */
    color: inherit;
    /* Giữ màu chữ mặc định của phần tử cha */
}

/* Reset list styles */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #833578;
    /* Màu cam */
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b5c9d6;
}

.btn-register,
.btn-view-more {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-register:hover,
.btn-view-more:hover {
    background-color: #883066;
}


/* Header Section */
.header-container {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    background-color: var(--white);
    border-bottom: 1px solid var(--light-grey-border);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    justify-content: space-between;
}

.header-main-content {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.logo-section img {
    height: 90px;
    width: auto;
    margin-right: 25px;
}

.title-section {
    text-align: center;
}

.main-title {
    color: var(--secondary-color);
    font-size: 2.3em;
    margin: 0;
    font-weight: bold;
}

.subtitle {
    color: var(--accent-color);
    font-size: 1.15em;
    margin-top: 5px;
    font-weight: normal;
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-left: 20px;
    flex-shrink: 0;
}

.contact-icon {
    font-size: 2.2em;
    color: #888;
    transition: color 0.3s ease;
}

.contact-icon:hover {
    color: #555;
}

/* Navigation Bar */
.navbar {
    background-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    color: var(--white);
    text-align: center;
    padding: 15px 22px;
    font-weight: bold;
    font-size: 0.98em;
    white-space: nowrap;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.nav-links a:hover {
    background-color: #3e5c9e;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary-color);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-top: 2px solid #0e3152;
}

.dropdown-content a {
    color: var(--white);
    padding: 12px 18px;
    display: block;
    text-align: left;
    font-weight: normal;
    font-size: 0.9em;
    text-decoration: none;
    /* ĐẢM BẢO KHÔNG CÓ GẠCH CHÂN */
}

.dropdown-content a:hover {
    background-color: #3c5cb3;
    /* text-decoration: underline; <-- ĐÃ XÓA NẾU CÓ */
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* HERO/SLIDER SECTION */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    max-width: 1310px;
    margin: 20px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content-left {
    position: relative;
    z-index: 1;
    flex: 2;
    color: var(--white);
    padding-right: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-text-block h2 {
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.hero-text-block p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.hero-details {
    margin-top: 20px;
    font-size: 0.95em;
    line-height: 1.8;
}

.hero-details p {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.hero-details p::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #22457a;
}

.hero-details p.highlight-text {
    font-weight: bold;
    color: var(--yellow-highlight);
}

.hero-form-right {
    position: relative;
    z-index: 1;
    flex: 1;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.hero-form-right h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 25px;
}

.scholarship-form input,
.scholarship-form select {
    width: calc(100% - 20px);
    padding: 12px 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

.scholarship-form select {
    background-color: var(--white);
    cursor: pointer;
}

/* NEW SECTION: ABOUT PROGRAM/COURSE */
.about-program-section {
    max-width: 1310px;
    margin: 40px auto;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(28, 49, 163, 0.08);
    position: relative;
    padding-top: 40px;
}

.program-header-line {
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.program-main-title {
    text-align: center;
    font-size: 2.2em;
    color: var(--text-color);
    margin-top: 20px;
    margin-bottom: 40px;
    font-weight: bold;
}

.program-content-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.program-image-wrapper {
    flex: 1;
    min-width: 40%;
    max-width: 50%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.program-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.program-text-content {
    flex: 1.5;
    color: #555;
    line-height: 1.7;
}

.program-text-content h3 {
    font-size: 1.8em;
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: bold;
}

.program-text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

/* NEW SECTION: CULTURE AND IMPACT */
.culture-impact-section {
    max-width: 1310px;
    margin: 40px auto;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.culture-impact-content-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.culture-impact-text-content {
    flex: 1;
    color: #555;
    line-height: 1.7;
    padding-right: 20px;
}

.culture-impact-text-content h3 {
    font-size: 1.8em;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    padding-left: 10px;
}

.culture-impact-text-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: calc(100% - 10px);
    background-color: var(--accent-color);
    border-radius: 2px;
}

.culture-impact-text-content p {
    margin-bottom: 25px;
    font-size: 1.05em;
}

.culture-impact-image-wrapper {
    flex: 1;
    min-width: 40%;
    max-width: 50%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.culture-impact-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}


/* MAIN CONTENT LAYOUT */
.content-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1250px;
    margin: 20px auto;
    padding: 0 20px;
}

.content-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Section Box Styles (Ứng dụng CNTT, Tiếng Anh, Quy định, Liên kết nhanh) */
.section-box {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.section-header {
    background-color: #e6f7ff;
    border-bottom: 2px solid var(--primary-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px 8px 0 0;
}

.section-header i {
    color: var(--primary-color);
    font-size: 1.5em;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin: 0;
    font-weight: bold;
}

/* Main Post Box */
.main-post-box {
    padding: 20px;
    border-bottom: 1px dashed var(--light-grey-border);
}

.main-post-image {
    margin-bottom: 15px;
    background-color: #eaf6ff;
    border: 1px solid #cceeff;
    padding: 10px;
    border-radius: 5px;
}

.main-post-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}

.main-post-text h3 {
    font-size: 1.1em;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
}

.main-post-text .btn-view-more {
    font-size: 0.9em;
}

/* Sub Post List */
.sub-post-list {
    padding: 10px 20px;
}

.sub-post-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted var(--light-grey-border);
}

.sub-post-list li:last-child {
    border-bottom: none;
}

.sub-post-list li i {
    color: var(--primary-color);
    font-size: 0.8em;
    margin-right: 8px;
    margin-top: 5px;
}

.sub-post-list li a {
    color: var(--text-color);
    font-size: 0.95em;
    line-height: 1.4;
    text-decoration: none;
    /* ĐẢM BẢO KHÔNG CÓ GẠCH CHÂN */
    transition: color 0.3s ease;
}

.sub-post-list li a:hover {
    color: var(--primary-color);
    /* text-decoration: underline; <-- ĐÃ XÓA NẾU CÓ VÀ KHÔNG MUỐN GẠCH CHÂN KHI HOVER */
}

.bottom-view-more {
    text-align: right;
    padding-top: 10px;
    border-top: 1px dashed var(--light-grey-border);
    margin-top: 10px;
}

.bottom-view-more .btn-view-more {
    font-size: 0.9em;
}

/* Right Column Sections */
.regulation-list,
.quicklink-list {
    list-style: none;
    padding: 10px 20px;
    margin: 0;
}

.regulation-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dotted var(--light-grey-border);
}

.regulation-list li:last-child {
    border-bottom: none;
}

.regulation-list li i {
    color: var(--primary-color);
    font-size: 0.8em;
    margin-right: 8px;
    margin-top: 5px;
}

.regulation-list li a {
    color: var(--text-color);
    font-size: 0.9em;
    line-height: 1.4;
    text-decoration: none;
    /* ĐẢM BẢO KHÔNG CÓ GẠCH CHÂN */
    transition: color 0.3s ease;
}

.regulation-list li a:hover {
    color: var(--primary-color);
    /* text-decoration: underline; <-- ĐÃ XÓA NẾU CÓ VÀ KHÔNG MUỐN GẠCH CHÂN KHI HOVER */
}

/* Quicklink Buttons */
.quicklink-buttons {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quicklink-btn {
    display: block;
    text-align: left;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.95em;
    transition: opacity 0.3s ease;
    text-decoration: none;
    /* ĐẢM BẢO KHÔNG CÓ GẠCH CHÂN */
}

.quicklink-btn:hover {
    opacity: 0.9;
}

/* Quicklink Button Colors */
.quicklink-btn.color-green {
    background-color: var(--primary-color);
}

.quicklink-btn.color-blue {
    background-color: #1e90ff;
}

.quicklink-btn.color-red {
    background-color: #dc3545;
}

.quicklink-btn.color-light-blue {
    background-color: #007bff;
}

.quicklink-btn.color-dark-blue {
    background-color: #003366;
}

.quicklink-btn.color-orange {
    background-color: #fd7e14;
}

/* CONTACT SECTION STYLES */
.contact-section-wrapper {
    max-width: 1200px;
    margin: 30px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

.contact-images {
    display: flex;
    height: 350px;
}

.main-contact-image {
    flex: 2;
    background-size: cover;
    background-position: center;
    border-right: 2px solid var(--light-bg);
}

.side-contact-images {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.small-contact-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--light-bg);
}

.small-contact-image:last-child {
    border-bottom: none;
}

.contact-info-block {
    background-color: var(--dark-blue-contact);
    color: var(--white);
    padding: 30px 40px;
    text-align: center;
}

.contact-info-block h2 {
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

.contact-locations {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-location {
    flex: 1;
    min-width: 300px;
    text-align: left;
    margin-bottom: 20px;
}

.contact-location h3 {
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--yellow-highlight);
}

.contact-location p {
    margin-bottom: 8px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.contact-location p i {
    margin-right: 10px;
    font-size: 1.1em;
    margin-top: 2px;
}

.contact-location p a {
    color: var(--white);
    text-decoration: none;
    /* ĐẢM BẢO KHÔNG CÓ GẠCH CHÂN */
    transition: text-decoration 0.3s ease;
}




/* FOOTER STYLES */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 20px 10px;
    margin-top: 30px;
    font-size: 0.95em;
}

.footer-content-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

.footer-left {
    flex: 1.2;
    padding-right: 20px;
}

.footer-logo-section img {
    max-width: 150px;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.footer-title {
    color: var(--white);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-left p {
    margin-bottom: 8px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.footer-left p i {
    margin-right: 10px;
    font-size: 1.1em;
    margin-top: 2px;
}

.footer-left p a {
    color: var(--white);
    text-decoration: none;
    /* ĐẢM BẢO KHÔNG CÓ GẠCH CHÂN */
    transition: text-decoration 0.3s ease;
}



.footer-right {
    flex: 2;
    padding-left: 20px;
}

.footer-section-title {
    color: var(--white);
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-links-columns {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links-list {
    flex: 1;
    min-width: 250px;
}

.footer-links-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.footer-links-list li i {
    margin-right: 8px;
    font-size: 0.8em;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-list li a {
    color: var(--white);
    text-decoration: none;
    /* ĐẢM BẢO KHÔNG CÓ GẠCH CHÂN */
    transition: text-decoration 0.3s ease;
}



.footer-bottom-bar {
    text-align: center;
    padding-top: 15px;
    font-size: 0.85em;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

.contact-mini .map-container {
    margin-top: 15px;
    /* Khoảng cách từ thông tin địa chỉ đến bản đồ */
    margin-bottom: 15px;
    /* Khoảng cách giữa các bản đồ hoặc đến phần tiếp theo */
    border-radius: 8px;
    /* Bo tròn góc cho bản đồ */
    overflow: hidden;
    /* Đảm bảo bản đồ không bị tràn ra ngoài bo góc */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* Thêm bóng cho bản đồ */
}

.contact-mini .map-container iframe {
    display: block;
    /* Loại bỏ khoảng trắng dưới iframe */
    width: 100%;
    /* Đảm bảo bản đồ chiếm toàn bộ chiều rộng của container */
    height: 250px;
    /* Chiều cao cố định cho bản đồ */
    border: none;
    /* Bỏ border mặc định của iframe */
}

/* Responsive adjustments for maps */
@media (max-width: 768px) {
    .contact-mini .map-container iframe {
        height: 200px;
        /* Giảm chiều cao bản đồ trên màn hình nhỏ hơn */
    }
}

.simple-slider {
    position: relative;
    max-width: 100%;
    /* Giới hạn chiều rộng của slide */
    margin: 15px auto;
    /* Căn giữa slide */
    border-radius: 8px;
    overflow: hidden;
    /* Đảm bảo hình ảnh và nội dung không tràn ra ngoài bo góc */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* Thêm bóng cho slide */
}

.slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* Hiệu ứng chuyển động mượt mà */
}

.slide {
    min-width: 100%;
    /* Đảm bảo mỗi slide chiếm toàn bộ chiều rộng của container */
    box-sizing: border-box;
    /* Bao gồm padding và border trong chiều rộng */
    position: relative;
    text-align: center;
    background-color: #f8f8f8;
    /* Màu nền dự phòng */
}

.slide img {
    width: 100%;
    height: auto;
    /* Chiều cao tự động để giữ tỷ lệ */
    display: block;
    /* Loại bỏ khoảng trắng dưới ảnh */
}

.slide .slide-text {
    color: #fff;
    font-size: 1.1em;
    padding: 8px 12px;
    position: absolute;
    bottom: 0px;
    /* Vị trí văn bản dưới ảnh */
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Nền mờ cho văn bản */
    box-sizing: border-box;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Nút điều khiển Previous/Next */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px 15px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0.7;
    /* Ban đầu hơi mờ */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
    /* Sáng hơn khi hover */
}

/* Các chấm chỉ báo (dots) */
.dot-container {
    text-align: center;
    padding: 10px;
    background-color: #f1f1f1;
    /* Nền cho chấm chỉ báo */
    border-top: 1px solid var(--border-color);
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: var(--primary-color);
    /* Màu chấm active hoặc hover */
}

/* Hiệu ứng chuyển động (Fade effect) - nếu bạn muốn */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .simple-slider .slide img {
        height: 200px;
        /* Giảm chiều cao ảnh trên màn hình nhỏ */
    }

    .slide .slide-text {
        font-size: 0.9em;
        padding: 5px 8px;
    }

    .prev,
    .next {
        font-size: 1em;
        padding: 8px 12px;
        margin-top: -18px;
    }
}


@media (max-width: 480px) {
    .simple-slider .slide img {
        height: 150px;
        /* Giảm chiều cao ảnh trên điện thoại */
    }

    .slide .slide-text {
        font-size: 0.8em;
    }

    .prev,
    .next {
        padding: 6px 10px;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
    }

    .hero-content-left {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-details p {
        justify-content: center;
    }

    .hero-form-right {
        width: 100%;
    }

    .about-program-section .program-content-layout,
    .culture-impact-section .culture-impact-content-layout {
        flex-direction: column;
        align-items: center;
    }

    .about-program-section .program-image-wrapper,
    .culture-impact-section .culture-impact-image-wrapper {
        min-width: 80%;
        max-width: 90%;
        margin-bottom: 30px;
    }

    .culture-impact-section .culture-impact-content-layout {
        flex-direction: column-reverse;
        /* Đảo ngược thứ tự để ảnh lên trên text */
    }

    .content-wrapper {
        flex-direction: column;
    }

    .content-left,
    .content-right {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-images {
        height: 300px;
    }

    .contact-locations {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-location {
        min-width: unset;
        width: 100%;
        text-align: center;
    }

    .contact-location p {
        justify-content: center;
    }

    .footer-content-wrapper {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 10px;
    }

    .footer-left,
    .footer-right {
        padding: 0;
        text-align: center;
    }

    .footer-logo-section img {
        margin: 0 auto 15px auto;
    }

    .footer-left p {
        justify-content: center;
    }

    .footer-links-columns {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .header-main-content {
        flex-direction: column;
        text-align: center;
    }

    .logo-section {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .title-section {
        margin-bottom: 15px;
    }

    .contact-icon-wrapper {
        margin-left: 0;
    }

    .navbar .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .navbar .nav-links li {
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
    }

    .dropdown-content a {
        padding-left: 40px;
    }

    .content-wrapper {
        padding: 0 10px;
    }

    .section-header h2 {
        font-size: 1.1em;
    }

    .hero-text-block h2 {
        font-size: 2em;
    }

    .hero-text-block p {
        font-size: 1em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .hero-form-right h3 {
        font-size: 1.3em;
    }

    .about-program-section,
    .culture-impact-section {
        padding: 20px 15px;
    }

    .program-main-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .program-text-content h3,
    .culture-impact-text-content h3 {
        font-size: 1.5em;
    }

    .program-text-content p,
    .culture-impact-text-content p {
        font-size: 0.95em;
    }

    .contact-images {
        flex-direction: column;
        height: auto;
    }

    .main-contact-image {
        border-right: none;
        border-bottom: 2px solid var(--light-bg);
        height: 200px;
    }

    .side-contact-images {
        flex-direction: row;
        height: 100px;
    }

    .small-contact-image {
        border-bottom: none;
        border-right: 2px solid var(--light-bg);
    }

    .small-contact-image:last-child {
        border-right: none;
    }

    .contact-info-block {
        padding: 20px;
    }

    .contact-info-block h2 {
        font-size: 1.7em;
        margin-bottom: 20px;
    }

    .contact-location h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 1em;
    }

    .quicklink-btn {
        font-size: 0.9em;
        padding: 8px 10px;
    }

    .footer-section-title {
        font-size: 1.1em;
    }

    .program-main-title {
        font-size: 1.5em;
    }

    .small-contact-image {
        height: 80px;
    }

    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        /* Tỷ lệ khung hình 16:9 (chiều cao / chiều rộng = 9/16 = 0.5625) */
        height: 0;
        overflow: hidden;
        max-width: 100%;
        background: #000;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

}

.testimonials {
    padding: 10px 20px;
}

.testimonial {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid var(--light-grey-border);
    border-radius: 5px;
    font-size: 0.95em;
    line-height: 1.4;
}

.testimonial p.author {
    font-style: italic;
    text-align: right;
    color: #777;
    margin-top: 5px;
}