.tabs {
    display: flex;
    cursor: pointer;
    margin-bottom: 20px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.tab {
    background: transparent;
    transition: color 0.3s;
    font-family: Roboto;
    font-size: 40px;
    font-weight: 700;
    line-height: 100px;
    text-align: center;
    padding: 10px 25px 0;
    /* Thay đổi padding để tạo khoảng cách */
    position: relative;
    /* Để định vị đường viền */
}

.tab.active {
    color: #e26e38;
    font-weight: bold;
    padding: 10px 5px 0;
}

.tab:not(.active) {
    color: #3E3E3E;
}

.tab::after {
    content: '';
    position: absolute;
    /* Định vị tuyệt đối để tạo đường viền dưới */
    left: 0;
    /* Đặt đường viền bắt đầu từ bên trái */
    right: 0;
    /* Đặt đường viền kết thúc bên phải */
    bottom: 0;
    /* Đặt đường viền ở dưới cùng */
    height: 2px;
    /* Chiều cao của đường viền */
    background: transparent;
    /* Mặc định không có màu */
    transition: background 0.3s;
    /* Hiệu ứng chuyển màu */
}

.tab.active::after {
    background: #E26E38;
    /* Màu xanh cho tab đang hoạt động */
}

.tab:not(.active)::after {
    background: #DFDFDF;
    /* Màu đường viền cho tab không hoạt động */
}

/* Để tránh khoảng cách giữa hai đường viền */
.tab:not(:last-child) {
    margin-right: -2px;
    /* Đẩy tab gần lại với nhau */
}

.content {
    /* padding: 20px; */
    /* background: white; */
    border-radius: 0 0 5px 5px;
    /* Giữ lại bo góc dưới */
    border: none !important;
    box-shadow: none !important;
    /* border-bottom: 2px solid #eee !important; */
    padding-top: 4.606%;
}

.faq-item {
    padding: 0 10.352%;
    cursor: pointer;
}


.faq-question {
    border-top: 2px solid #eee;
    font-weight: bold;
    /* Làm đậm câu hỏi */
    display: flex;
    justify-content: space-between;
    /* Căn đều khoảng cách giữa câu hỏi và biểu tượng */
    align-items: center;
    /* Căn giữa theo chiều dọc */
    font-family: Inter;
    font-size: 26px;
    font-weight: 600;
    line-height: 31.47px;
    text-align: left;
    color: #000000;
   padding: 35.46px 9px 35.46px 12px;
}
.faq-question p{
    margin: 0;
}
.faq-question .toggle-icon i{
    font-size: 14px;
}
.faq-answer strong{
    font-size: 26px;
    ;
    line-height: 31.47px;
    color: #000000;
    margin-right: 15px;
}
.faq-answer {
    display: none;
    padding-bottom: 1.158%;
    padding-top: 2.895%;
    border-top: 2px solid #eee;
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    text-align: left;
    color: #282828;
    padding-left: 12px;
}

.active-answer {
    display: block;
    /* Hiển thị câu trả lời khi cần */
}

.toggle-icon {
    margin-left: 10px;
    /* Khoảng cách giữa câu hỏi và biểu tượng */
    transition: transform 0.3s;
    /* Hiệu ứng chuyển động cho biểu tượng */
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
    /* Xoay biểu tượng khi câu hỏi mở */
}

.faq-container {
    padding-bottom: 15%;
}

.faq-item:last-child .faq {
    border-bottom: 2px solid #eee;
}