    body{
        margin:0;
        background:#111827;
        color:#fff;
        font-family:Arial, sans-serif;
    }

    header{
        text-align:center;
        padding:20px;
    }

    header h1{
        color:#fbbf24;
        font-size:2.2rem;
        letter-spacing:1px;
    }

    .container{
        width:90%;
        max-width:900px;
        margin:25px auto;
        background:#1f2937;
        padding:25px;
        border-radius:12px;
        box-shadow:0 0 15px rgba(0,0,0,0.4);
    }

    .faq{
        background:#111827;
        border:1px solid #374151;
        border-radius:8px;
        margin-bottom:10px;
        padding:12px;
        cursor:pointer;
        transition:.25s;
    }

    .faq:hover{
        border-color:#fbbf24;
        box-shadow:0 0 8px rgba(251,191,36,0.3);
    }

    .question{
        font-weight:bold;
        font-size:1.05rem;
        color:#fbbf24;
    }

    .answer{
        display:none;
        padding-top:8px;
        font-size:.95rem;
        color:#d1d5db;
    }

    .button{
        display:inline-block;
        margin-top:25px;
        background:#fbbf24;
        color:#111827;
        padding:10px 20px;
        border-radius:8px;
        font-weight:bold;
        text-decoration:none;
    }

    .button:hover{
        background:#fff3c4;
    }
