/* ============================================================
   9. PAGE: TERMS, PRIVACY, FAQ
   ============================================================ */

/* Terms & Privacy & FAQ use .container */
.terms-page .container,
.privacy-page .container,
.faq-page .container {
    max-width: 750px;
    margin: 60px auto;
    padding: 0 20px;
}
.terms-page h1,
.privacy-page h1,
.faq-page h1 {
    text-align: center;
    color: #1a73e8;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}
.terms-page h2,
.privacy-page h2,
.faq-page h2 {
    color: #1a73e8;
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 10px;
    font-weight: 600;
}
.terms-page p,
.privacy-page p,
.faq-page p {
    font-size: 16px;
    line-height: 1.9;
    margin: 10px 0;
}
.terms-page ul,
.privacy-page ul,
.faq-page ul {
    line-height: 1.9;
    margin-right: 20px;
}

/* FAQ Specific */
.faq-item {
    background: white;
    border-radius: 24px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: 0.2s;
}
.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b2b44;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.faq-question::before {
    content: "❓";
    font-size: 1.4rem;
}
.faq-answer {
    font-size: 1rem;
    color: #2d3e50;
    padding-right: 30px;
    border-right: 3px solid #e0e0e0;
    margin-top: 8px;
}