body{
    background:#09090b;
    color:white;
    font-family:Inter,sans-serif;
}

.page-container{
    max-width:900px;
    margin:0 auto;
    margin-top:calc(var(--nav-height, 90px) + 30px);
    padding:30px 20px 40px;
}

.page-container h1{
    font-size:clamp(2rem, 8vw, 3rem);
    margin-bottom:30px;
}

.page-container h2{
    margin-top:30px;
    color:#7c3aed;
}

.page-container p{
    color:#b3b3b3;
    line-height:1.8;
}

.faq-item{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:20px;
    margin-bottom:15px;
}

input,
textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,.05);
    color:white;
}

button{
    padding:14px 24px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    background:#7c3aed;
    color:white;
    font-weight:600;
}