.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;
    }
}