/* FAQ PAGE MOBILE */

.faq-title {
    text-align: center;
    margin: 40px 0 35px 0;
    font-weight: 800;
    font-size: 24px;
}

.faq-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(59,130,246,0.08);
    overflow: hidden;
    transition: 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: var(--text-dark);
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 22px;
    color: var(--primary);
    transition: 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

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