.faq-card {
    width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 6px 18px rgb(0 0 0 / 0.05);
}

.faq-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #55354c;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 14px 16px;
    border: none;
    outline: none;
    background: #fafafa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: 0.2s ease-in-out;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-icon {
    font-size: 18px;
    font-weight: bold;
    color: #7a4e6c;
    transition: 0.2s ease-in-out;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.25s ease-in-out;
    padding: 0 16px;
}

.faq-answer p {
    font-size: 13px;
    line-height: 1.6;
    margin: 12px 0;
    color: #555;
}

/* Active Open */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
