.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.35s ease;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: 'Montserrat'
}

.faq-answer p {

    text-align: left;

    margin: 0;
}

.faq-item.active .faq-answer {
    margin-top: 10px;
}

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