.ag-faq-section {
    width: 100%;
    margin: 15px 0;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 15px 15px 15px;
    box-sizing: border-box;
    will-change: transform, opacity;
}
.ag-faq-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #333;
    text-align: center;
}
.ag-faq-item {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    margin-bottom: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
    contain: content;
}
.ag-faq-item:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}
.ag-faq-question {
    margin: 0;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    box-sizing: border-box;
}
.ag-faq-item.active .ag-faq-question,
.ag-faq-item.open .ag-faq-question {
    color: #000;
}
.ag-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.3s ease;
    background: transparent;
    transform-origin: center center;
}
.ag-faq-item.active .ag-faq-icon,
.ag-faq-item.open .ag-faq-icon,
.ag-faq-question.active .ag-faq-icon,
.ag-faq-question.open .ag-faq-icon {
    transform: rotate(45deg);
}
.ag-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    box-sizing: border-box;
}
.ag-faq-answer-inner {
    padding: 0 12px 12px 12px;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    box-sizing: border-box;
}
.ag-faq-answer-inner > *:first-child {
    margin-top: 0;
    padding-top: 0;
}
.ag-faq-answer-inner > *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
.ag-faq-answer-inner p {
    margin: 0 0 5px 0;
    padding: 0;
}
.ag-faq-answer-inner p:empty {
    display: none;
}
@media (max-width: 768px) {
    .ag-faq-section {
        padding: 10px;
        margin: 10px 0;
    }
    .ag-faq-question {
        padding: 8px 10px;
        font-size: 13px;
    }
    .ag-faq-answer-inner {
        padding: 0 10px 10px 10px;
        font-size: 12px;
    }
}