.faq-main-title-dbe5da5a {
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: 700;
}
.faq-container-dbe5da5a {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item-dbe5da5a {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}
.faq-item-dbe5da5a-title {
    padding: 15px 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}
.faq-item-dbe5da5a-title:hover {
    background-color: #f1f1f1;
}
.faq-item-dbe5da5a-content {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    background-color: #fff;
}
.faq-item-dbe5da5a.active .faq-item-dbe5da5a-title {
    background-color: #f1f1f1;
}
.faq-item-dbe5da5a.active .faq-icon-dbe5da5a {
    transform: rotate(45deg);
}
.faq-icon-dbe5da5a {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.2em;
    line-height: 1;
}
