/* ============ FAQ SECTION ============ */
.faq-section {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
}

.faq-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

/* FAQ ACCORDION */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    /* background: #1b2433; */
    border-radius: 10px;
    padding: 18px 22px;
    cursor: pointer;
}

.faq-item summary {
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

.faq-item summary::after {
    content: "⌄";
    position: absolute;
    right: 0;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item p {
    margin-top: 12px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* SUPPORT BOX */
.support-box {
    margin-top: 50px;
    background: #fff;
    color: #000;
    padding: 30px;
    border-radius: 12px;
}

.support-box h2 {
    margin-bottom: 10px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .faq-section h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .faq-item summary {
        font-size: 15px;
    }

    .support-box {
        padding: 20px;
    }
}
