.faq-title .title-line1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.faq-title .title-line2 {
    font-size: 18px;
    color: #666;
    margin-top: 6px;
}

/* CÁC STYLE CŨ */
.faq-wrapper { max-width: 1320px; }
/* 
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
*/

.faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
}

.faq-answer {
    display: none;
    padding-top: 15px;
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

/* ICON MỚI CĂN GIỮA – ĐẸP – TO */
.faq-icon {
    width: 28px;
    height: 28px;
    font-size: 32px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.35s ease;
}

/* Icon mặc định: + */
.faq-icon::after {
    content: "+";
}

/* Khi active: xoay và đổi thành dấu – đẹp */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon::after {
    content: "−"; /* minus chuẩn, đẹp & dày */
}

/* GRID 2 CỘT — dòng có chiều cao bằng nhau */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px; /* 40px giữa hàng, 30px giữa 2 cột */
}

/* Mobile: 1 cột */
@media (max-width: 767px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}