
/* Added FAQ Styles */
.sect-qa-support {
    padding: 80px 20px;
    background-color: var(--color-base-900);
    color: #cfd4de;
    font-family: IBM Plex Sans Variable, sans-serif, system-ui;
}

.qa-head-title {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.qa-head-title .ui-tag-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(color-base-800);
    color: #3b82f6;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qa-head-title h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.qa-head-title p {
    color: #616b82;
    font-size: 18px;
}

.qa-items-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qa-item-box {
    background: var(--color-base-800);
    border: 1px solid #1f2937;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.qa-item-box:hover {
    border-color: #374151;
    background: var(--color-base-800);
}

.qa-item-box.active {
    border-color: #3b82f6;
     background: var(--color-base-800);
}

.qa-item-query {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.qa-item-query h3 {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
}

.qa-toggle-icon {
    font-size: 24px;
    color: #616b82;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.qa-item-box.active .qa-toggle-icon {
    transform: rotate(45deg);
    color: #3b82f6;
}

.qa-item-reply {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.qa-item-box.active .qa-item-reply {
    padding-bottom: 24px;
    max-height: 500px;
    opacity: 1;
}

.qa-item-reply p {
    margin: 0;
    color: #9ca3af;
    line-height: 1.6;
    font-size: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .qa-head-title h2 {
        font-size: 28px;
    }
    
    .qa-item-query {
        padding: 20px;
    }
    
    .qa-item-query h3 {
        font-size: 16px;
    }
}
