/* FAQ Accordion Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(50, 17, 204, 0.12);
}

.faq-item.active {
    box-shadow: 0 4px 16px rgba(50, 17, 204, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(50, 17, 204, 0.03) 0%, rgba(250, 79, 7, 0.03) 100%);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(50, 17, 204, 0.05) 0%, rgba(250, 79, 7, 0.05) 100%);
    border-bottom: 1px solid rgba(50, 17, 204, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    padding-right: 40px;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3211CC 0%, #FA4F07 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-icon i {
    color: white;
    font-size: 14px;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 24px 28px 24px 28px;
}

.faq-answer-content {
    padding-top: 8px;
}

.faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-answer ul {
    margin: 12px 0 0 20px;
    padding: 0;
}

.faq-answer li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Number Badge (Optional Enhancement) */
.faq-question::before {
    content: attr(data-number);
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(50, 17, 204, 0.1) 0%, rgba(250, 79, 7, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0;
    pointer-events: none;
}

/* With Numbers Variant */
.faq-item.numbered .faq-question {
    padding-left: 68px;
}

.faq-item.numbered .faq-question::before {
    opacity: 1;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeIn 0.5s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }
.faq-item:nth-child(6) { animation-delay: 0.3s; }

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
        padding-right: 30px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-icon i {
        font-size: 12px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 14px;
    }
}


