/* =========================
   FAQ SECTION (COMPONENT)
========================= */

.faq-section {
    background: transparent;
}

/* Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.faq-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 32px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.03);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12),
        0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Question */
.faq-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

/* Answer */
.faq-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
}

/* Mobile */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
