.faq {
    max-width: 900px;
    margin: auto;
    display: grid;
    gap: 1.5rem;
}
.faq-item {
    background: #fff;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    line-height: 1.85;
}
.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.faq-item h2 {
    font-size: 1.2rem;
    margin: 0;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
    color: #e66369;
}
.faq-item h2::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-weight: bold;
    transition: transform 0.3s;
}
.faq-item.active h2::after {
    transform: rotate(45deg);
}
.faq-item p {
    /*display: none;*/
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: #444;
}
.faq-item.active p {
    display: none;
}