*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#081120;
color:white;
line-height:1.6;
}

/* HEADER */

.header{
background:#ffffff;
padding:18px;
text-align:center;
border-bottom:1px solid #e5e7eb;
}

.header h1{
color:#0a84ff;
font-size:36px;
font-weight:900;
letter-spacing:3px;
}

/* PAGE HERO */

.page-hero{
background:linear-gradient(135deg,#1d8fff,#0b3d91);
text-align:center;
padding:70px 20px 50px;
}

.page-hero h1{
font-size:42px;
font-weight:800;
color:#fff;
margin-bottom:18px;
}

.page-hero p{
max-width:650px;
margin:0 auto;
color:#dbeafe;
font-size:18px;
line-height:1.7;
}

/* FAQ */

.faq-container{
max-width:900px;
margin:60px auto;
padding:0 20px;
}

.faq-item{
background:#10233c;
border-radius:15px;
margin-bottom:18px;
overflow:hidden;
border:1px solid rgba(255,255,255,0.08);
}

.faq-question{
width:100%;
padding:22px;
background:none;
border:none;
color:white;
font-size:17px;
font-weight:bold;
text-align:left;
cursor:pointer;
transition:.3s;
}

.faq-question:hover{
background:#16304d;
}

.faq-answer{
display:none;
padding:0 22px 22px;
color:#d3dff5;
}

/* BUTTONS */

.bottom-buttons{
padding:50px 20px;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn{
display:inline-block;
padding:15px 30px;
background:#00c2ff;
color:white;
text-decoration:none;
border-radius:50px;
font-weight:bold;
transition:.3s;
}

.btn:hover{
transform:translateY(-2px);
}

/* MOBILE */

@media(max-width:768px){

.header h1{
font-size:24px;
}

.page-hero{
padding:55px 20px 40px;
}

.page-hero h1{
font-size:34px;
}

.page-hero p{
font-size:16px;
}

.faq-question{
font-size:16px;
padding:18px;
}

.faq-answer{
font-size:15px;
}

.bottom-buttons{
flex-direction:column;
align-items:center;
}

.btn{
width:90%;
text-align:center;
}

}