.faq-wrapper {
    margin: 20px 0;
    padding: 0;
    list-style-type: none;
}

.faq-item {
    margin-bottom: 8px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    background: #fff;
}

.faq-item:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border-color: #0073e6;
}

details {
    display: block;
    cursor: pointer;
}

summary {
    padding: 8px 12px;
    font-size: 0.95em;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
    user-select: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease, color 0.3s ease;
}

summary:hover {
    color: #0073e6;
}

summary::after {
    content: '⮚';
    font-size: 0.8em;
    color: #333;
    transition: transform 0.3s ease, color 0.3s ease;
}

details[open] summary::after {
    transform: rotate(90deg);
    color: #0073e6;
}

.faq-answer {
    padding: 8px 12px;
    font-size: 0.9em;
    line-height: 1.5;
    color: #555;
    background-color: #fff;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}
