.faq {
    background: white;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq h3 {
    color: #203452;
    margin-top: 16px;
}

.faq-accordion {
    margin-top: 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-pergunta {
    width: 100%;
    background: white;
    border: none;
    padding: 18px 22px;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    color: #203452;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-pergunta span {
    font-size: 22px;
    font-weight: bold;
}

.faq-resposta {
    display: none;
    padding: 0 22px 18px 22px;
    color: #333;
    line-height: 1.6;
}

.faq-item.ativo .faq-resposta {
    display: block;
}

.faq-item.ativo .faq-pergunta span {
    transform: rotate(45deg);
}