.elementor-faq-container {
    width: 100%;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
    border-radius: 6px;
    background: #ffffff;
    overflow: hidden;
}
.faq-item-title {
    margin: 0;
    padding: 15px 20px;
    cursor: pointer;
    background-color: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    user-select: none;
    color: #1e293b;
}
.faq-item-title:hover {
    background-color: #f1f5f9;
}
.faq-item-content {
    padding: 15px 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}
.faq-icon {
    font-weight: bold;
    font-size: 22px;
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
