/* ============================================================
   faq.css - Page FAQ Transgo
   ============================================================ */

.grid-container {
    position: relative;
    z-index: 1;
}

.faq-container {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.09);
    margin-top: 40px;
    padding: 40px 36px 30px;
    max-width: 860px;
}

.faq-container h1 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #14244a;
    margin-bottom: 16px;
}

.faq-intro {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ---------- QUESTIONS / REPONSES ---------- */
.faq-item {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-of-type {
    border-bottom: none;
}

.faq-item h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #14244a;
    margin-bottom: 10px;
}

.faq-item p {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

.faq-item a {
    color: #188cff;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
    .faq-container {
        padding: 24px 16px 20px;
        margin-top: 20px;
    }

    .faq-container h1 {
        font-size: 1.5rem;
    }
}
