@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.wa-faq-section {
    width: 100%;
    background: #000000;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    text-align: center;
}

.wa-faq-main-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.wa-faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-faq-item {
    background: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
    text-align: left;
}

.wa-faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: #111111;
}

.wa-faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 17px;
    color: #ffffff;
    user-select: none;
}

.wa-faq-icon {
    color: #a855f7; /* Volandex Purple */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
}

.wa-faq-item.wa-faq-open .wa-faq-icon {
    transform: rotate(180deg);
}

.wa-faq-item.wa-faq-open {
    border-color: #a855f7 !important;
}

.wa-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #080808;
    border-top: 0px solid rgba(255, 255, 255, 0.05);
}

.wa-faq-item.wa-faq-open .wa-faq-answer {
    border-top-width: 1px;
    max-height: 500px; /* Adjust according to content height */
}

.wa-faq-answer-inner {
    padding: 25px 30px;
    color: #888888;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .wa-faq-main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .wa-faq-question {
        padding: 20px 20px;
        font-size: 15px;
    }
}
