.faq-wrapper {
    gap: 60px;
}

.faq-intro {
    flex: 1;
}

.faq-list {
    flex: 1.5;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    padding-right: 20px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

/* Icon dấu cộng */
.faq-icon:before, .faq-icon:after {
    content: '';
    position: absolute;
    background: #999;
    transition: all 0.3s ease;
}

.faq-icon:before {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-icon:after {
    width: 100%;
    height: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Khi Active chuyển thành dấu trừ và đổi màu */
.faq-item.active .faq-icon:before {
    transform: translateX(-50%) rotate(90deg); /* Xoay dọc thành ngang -> mất dấu dọc */
    background: var(--secondary-color);
}
.faq-item.active .faq-icon:after {
    background: var(--secondary-color);
}
.faq-item.active h3 {
    color: var(--secondary-color);
}

.faq-body {
    padding: 0 25px 25px;
    display: none;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid transparent;
}

@media (max-width: 768px) {
    .faq-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}

/* Tighten Spacing for FAQ Section */
.home-faq {
    padding-top: 40px !important;
    padding-bottom: 10px !important;
    margin-bottom: 0 !important;
}

.faq-list .faq-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .home-faq {
        padding-top: 25px !important;
        padding-bottom: 5px !important;
        margin-bottom: 0 !important;
    }
}