.tnc-hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: start;
    justify-content: center;
    overflow: hidden;
}

/* Lớp phủ màu tối phủ lên ảnh nền */
.tnc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Độ tối của ảnh nền */
    display: flex;
    align-items: center;
}

.tnc-hero-title {
    color: #ff9800; /* Màu cam chủ đạo */
    font-size: clamp(3rem, 5vw, 5rem);;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Thanh đứng màu trắng bên trái chữ */
.vertical-line {
    display: inline-block;
    width: 8px;
    height: 60px; /* Chiều cao thanh đứng */
    background-color: #ffffff;
    margin-right: 20px;
}

/* Responsive cho điện thoại */
@media (max-width: 768px) {
    .tnc-hero {
        /* height: 250px; */
    }
    .tnc-hero-title {
        font-size: 2.5rem;
    }
    .vertical-line {
        height: 40px;
        width: 5px;
    }
}

/* Container chính chứa toàn bộ phần tải về và banner */
.download-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
    font-family: Arial, sans-serif;
}

/* Thiết lập Grid 3 cột cho danh sách sản phẩm */
.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem 3rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

/* Từng ô sản phẩm */
.download-item {
    text-align: center;
}

.download-image-wrapper {
    width: 100%;
    margin-bottom: 12px;
}

.download-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Tiêu đề sản phẩm */
.download-title {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin: 10px 0 12px 0;
}

/* Nút Tải về màu cam */
.download-btn {
    display: inline-block;
    background-color: #ffa000;
    color: #ffffff;
    text-decoration: none;
    padding: 4px 25px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

.download-btn:hover {
    background-color: #e69000;
}

/* Banner liên hệ màu cam */
.contact-banner {
    background-color: #ffa000;
    text-align: center;
    padding: 1rem;
    margin-top: 20px;
    margin-bottom: 3rem;
}

.contact-banner-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 25px 0;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgb(110, 106, 106);
}

/* Nút màu trắng trong banner liên hệ */
.contact-banner-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #ffa000;
    text-decoration: none;
    padding: 12px 45px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 20px;
    transition: background-color 0.2s ease;
}

.contact-banner-btn:hover {
    background-color: #f5f5f5;
}

/* Tương thích giao diện trên thiết bị di động */
@media (max-width: 992px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .download-grid {
        grid-template-columns: 1fr;
    }
    .contact-banner-title {
        font-size: 16px;
    }
    .contact-banner-btn {
        padding: 10px 30px;
        font-size: 14px;
    }
}