.faq-layout {
    display: grid !important;
    grid-template-columns: 300px 1fr !important;
    gap: 30px !important;
    margin-top: 40px !important;
    align-items: start !important;
}

.faq-sidebar {
    padding: 30px;
    border-radius: 20px;
}

.faq-sidebar h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(240, 182, 58, 0.4);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.15);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-answer-inner {
    padding: 20px 25px 25px;
    color: var(--muted);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-toggle-icon {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.8rem;
    margin-right: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}



@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr !important;
    }
}