.faq-list {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.faq-item {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: all 0.25s ease;
}

.faq-item:hover {
    background: linear-gradient(90deg, #f2f6ff, #ffffff);
    transform: translateX(4px);
}

.faq-item img {
    width: 20px;
    margin-right: 12px;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.faq-item:hover img {
    opacity: 1;
}

.faq-item a {
    text-decoration: none;
    border-bottom: 1px dashed #a7a7a7;
    transition: border-bottom 0.2s ease;
}

p {
    line-height: normal;
}