.faq-content {
    font-family: 'vagRounded';
    color: #605d5d;
}
h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #e190af;
}
.content-faq {
    max-width: 1000px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
}

.faq-toggle {
    background: #eee;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
}

.faq-answer {
    line-height: 1.6;
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}
.faq-toggle i{
    color:#555;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle i{
    color:#87d6cc;
    transform: rotate(180deg);
}

.faq-item.active .faq-answer{
    max-height: 500px;
    opacity: 1;
}
.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p{
    text-indent: 15px;
}

.faq-contact{
    margin-top:60px;
    margin-bottom:60px;
    padding:40px 20px;
    text-align:center;
    background:#f8f8f8;
    border-radius:8px;
}

.faq-contact h3{
    font-size:22px;
    margin-bottom:10px;
    color: #e190af;
}

.faq-contact p{
    margin-bottom:20px;
}

.faq-whatsapp{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 24px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
    transition:all .3s ease;
}

.faq-whatsapp i{
    font-size:18px;
}

.faq-whatsapp:hover{
    background:#1ebe5b;
    transform:translateY(-2px);
}