.faq-wrapper-0718b72d {
    max-width: 800px;
    margin: 0 auto;
}

.faq-main-title-0718b72d {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.faq-item-0718b72d {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question-0718b72d {
    margin: 0;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #444;
    transition: color 0.3s;
}

.faq-question-0718b72d:hover {
    color: #000;
}

.faq-icon-0718b72d {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item-0718b72d.active .faq-icon-0718b72d {
    transform: rotate(180deg);
}

.faq-answer-0718b72d {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
    color: #666;
    line-height: 1.6;
}

.faq-item-0718b72d.active .faq-answer-0718b72d {
    max-height: 500px;
    padding: 0 0 15px 0;
}