
    .cozylil-faq-page {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        color: #444;
        line-height: 1.6;
    }
    .faq-header {
        text-align: center;
        margin-bottom: 50px;
    }
    .faq-header h1 {
        font-size: 32px;
        color: #000;
    }
    .faq-category {
        margin-bottom: 40px;
    }
    .faq-category h2 {
        font-size: 20px;
        color: #000;
        background: #f9f9f9;
        padding: 12px 20px;
        border-radius: 8px;
        border-left: 5px solid #fecb2e;
        margin-bottom: 20px;
    }
    .faq-item {
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    .faq-question {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-bottom: 8px;
        display: flex;
        align-items: flex-start;
    }
    .faq-question::before {
        content: "Q:";
        color: #fecb2e;
        margin-right: 10px;
        font-size: 18px;
    }
    .faq-answer {
        font-size: 14px;
        color: #666;
        padding-left: 32px;
    }
    /* 底部联系卡片 */
    .faq-footer {
        margin-top: 60px;
        background: #fff9e6;
        padding: 30px;
        border-radius: 16px;
        text-align: center;
        border: 1px dashed #fecb2e;
    }
    .faq-footer h3 { margin-top: 0; color: #000; }
    .email-btn {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 25px;
        background: #000;
        color: #fff !important;
        text-decoration: none !important;
        border-radius: 50px;
        font-weight: bold;
        transition: 0.3s;
    }
    .email-btn:hover {
        background: #fecb2e;
        color: #000 !important;
    }

    @media (max-width: 600px) {
        .faq-header h1 { font-size: 26px; }
    }
