body {
    background-color: #ffffff !important;
}

.faq-header {
    padding-bottom: 40px;
}

.faq-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2a003d;
}

.faq-header .subtitle {
    font-size: 1.2rem;
    color: #666;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    border-bottom: none;
    margin-bottom: 1rem;
    background: #eeeeee;
    padding: 0 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2a003d;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #2a003d;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 0;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* Valor alto o suficiente para conteúdo */
    padding: 1rem 0;
}