/* Thiết lập cơ bản */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* -------------------- HEADER -------------------- */
.main-header {
    background-color: #0d47a1; /* Màu xanh đậm cho header */
    color: white;
    padding: 10px 20px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Đẩy logo sang trái, hỗ trợ sang phải */
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 30px;
    margin-right: 10px;
    color: #ffc107; /* Màu vàng nổi bật */
}

.text-group {
    display: flex;
    flex-direction: column;
}

.logo-text-small {
    font-size: 12px;
    font-weight: normal;
    opacity: 0.8;
}

.logo-text-large {
    font-size: 18px;
    font-weight: bold;
    margin-top: -3px;
}

.support-contact {
    display: flex;
    align-items: center;
    background-color: #f77000; /* Màu cam nổi bật */
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.support-icon {
    font-size: 18px;
    margin-right: 8px;
}

/* -------------------- KHU VỰC NỘI DUNG CHÍNH (CÓ ẢNH NỀN) -------------------- */
.main-content-area {
    /* Đảm bảo chiều cao đủ lớn */
    min-height: 75vh; 
    position: relative; 
    overflow: hidden;
    background-image: url(Hinh4.jpg); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* -------------------- 1. MENU BÊN TRÁI -------------------- */
.menu-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); 
    left: 40px; 
    width: 320px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.95); /* Nền trắng hơi mờ */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s, transform 0.2s;
}

.menu-item:hover {
    background-color: white;
    transform: translateX(5px);
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: white;
    font-size: 18px;
}

.item-text {
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

/* Màu menu */
.quy-dinh-tuyen-sinh .icon-circle,
.tra-cuu-ket-qua .icon-circle,
.huong-dan-dang-ky .icon-circle {
    background-color: #5c6bc0; /* Màu xanh tím */
}

.ho-tro-tuyen-sinh {
    /* Màu nền hơi đỏ mờ */
    background-color: rgba(255, 220, 220, 0.95); 
}

.ho-tro-tuyen-sinh .icon-circle {
    background-color: #e53935; /* Màu đỏ cho icon */
}

.red-text {
    color: #e53935; /* Màu chữ đỏ */
}


/* -------------------- 2. VĂN BẢN CHÍNH GIỮA -------------------- */
.content-text-overlay {
    position: absolute;
    top: 55%;
    left: 65%; /* Đẩy sang phải để tránh menu */
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 600px;
    z-index: 5;
}

.main-title {
    font-size: 40px;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
    color: #ffc107; /* Màu vàng */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); 
}

.description-text {
    font-size: 18px;
    font-weight: 500;
    color: white;
    line-height: 1.4;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* -------------------- 3. NÚT GỌI ĐIỆN THOẠI NỔI -------------------- */
.call-button {
    position: absolute;
    bottom: 20px;
    right: 20px; /* Đặt góc dưới bên phải khu vực ảnh */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #00bcd4; /* Màu xanh ngọc */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 20;
    transition: background-color 0.3s;
}

.call-button:hover {
    background-color: #0097a7;
}

/* -------------------- FOOTER -------------------- */
.main-footer {
    background-color: #0d47a1; 
    color: white;
    padding: 15px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* Căn tất cả nội dung sang phải */
    align-items: flex-end; 
    text-align: right;
}

.footer-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.footer-support {
    font-size: 12px;
    opacity: 0.9;
}