.faqSection {
    padding: 100px 0;
    position: relative;
    background: rgba(10, 10, 10, 0.88);
    margin-top: 0;
    border-radius: 0;
    overflow: hidden;
}

.faqContainer {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.faqTitle {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faqList {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faqItem {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faqItem.active {
    background: rgba(20, 20, 20, 0.8);
    border-color: var(--primary-accent);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.faqToggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #fff;
    transition: all 0.3s ease;
}

.faqToggle:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faqQuestion {
    font-size: 1.1rem;
    font-weight: 500;
    color: #e0e0e0;
}

.faqItem.active .faqQuestion {
    color: var(--primary-accent);
}

.faqIcon {
    font-size: 1.5rem;
    color: var(--primary-accent);
    transition: transform 0.3s ease;
}

.faqItem.active .faqIcon {
    transform: rotate(180deg);
    /* Or 45deg for + to x */
}

.faqAnswer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faqAnswer.active {
    max-height: 500px;
    /* Adjust as needed */
    transition: max-height 0.4s ease-in-out;
}

.faqAnswer p {
    padding: 0 24px 24px;
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}







