 
.header-top-container {
    padding-bottom: 10px;
}
.header-top-tapdoan {
    display: flex;
    align-items: center; /* Căn giữa theo chiều dọc */
    justify-content: center; /* Căn giữa theo chiều ngang */
    gap: 20px; /* Khoảng cách giữa tên công ty và logo */
    padding: 5px 0 0 0;
}

.header-top-container .company-name {
    font-size: 36px;  text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap; /* Đảm bảo chữ không bị xuống dòng */
}

.header-top-container .logo-container img {
    padding-top: 10px;
    height: 50px; width: auto;
}
.header-top-container .official-banner {
    text-align: center;
    font-size: 26px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0;
}
.header-top-container .nav-menu {
    text-align: center;
    margin-top: 10px;
    padding: 10px;
}
.header-top-container .nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}
.header-top-container .nav-menu ul li {
    display: inline;
    margin: 0 15px;
}
.header-top-container .nav-menu ul li a {  color: inherit; /* Kế thừa màu từ thẻ nav */
    text-decoration: none;
    font-size: 16px;
}
@media (max-width: 768px) {
    .header-top-container .nav-menu {
        display: none; /* Ẩn menu trên mobile */
    }

    .header-top-container .company-name {
             display: none; /* Ẩn menu trên mobile */
    }

    .header-top-container  .official-banner {
        font-size: 15px; /* Nhỏ hơn trên mobile */
    }

    .header-top-container  .logo-container img {
        height: 36px; /* Thu nhỏ logo */
		width:auto;
    }
}