/* FILE NAME: css/faq.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#050816;
color:white;
overflow-x:hidden;
}

/* NAVBAR */

.navbar{
width:100%;
padding:22px 7%;
display:flex;
justify-content:space-between;
align-items:center;
position:fixed;
top:0;
left:0;
z-index:999;
background:rgba(5,8,22,0.88);
backdrop-filter:blur(15px);
border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
font-size:30px;
font-weight:800;
background:linear-gradient(90deg,#60a5fa,#a855f7);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

nav a{
text-decoration:none;
color:white;
margin-left:28px;
font-size:15px;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#60a5fa;
}

/* HERO */

.hero{
width:100%;
min-height:70vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:160px 7% 80px;
}

.hero-text{
max-width:900px;
}

.hero-text h1{
font-size:72px;
margin-bottom:25px;
font-weight:800;
}

.hero-text h1 span{
background:linear-gradient(90deg,#60a5fa,#a855f7);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero-text p{
font-size:19px;
line-height:1.9;
color:#cbd5e1;
}

/* FAQ */

.faq-section{
padding:100px 7%;
}

.faq-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.faq-box{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
padding:35px;
border-radius:28px;
transition:0.35s;
}

.faq-box:hover{
transform:translateY(-8px);
background:rgba(255,255,255,0.08);
}

.faq-box h2{
font-size:28px;
margin-bottom:18px;
}

.faq-box p{
color:#cbd5e1;
line-height:1.9;
}

/* SEO */

.seo-section{
padding:100px 7%;
}

.seo-container{
max-width:1100px;
margin:auto;
text-align:center;
}

.seo-container h2{
font-size:52px;
margin-bottom:30px;
}

.seo-container p{
font-size:18px;
line-height:2;
color:#cbd5e1;
margin-bottom:25px;
}

/* FOOTER */

footer{
padding:50px 7%;
text-align:center;
border-top:1px solid rgba(255,255,255,0.08);
margin-top:60px;
}

footer h3{
font-size:32px;
margin-bottom:12px;
}

footer p{
color:#94a3b8;
margin-bottom:10px;
}

/* MOBILE */

@media(max-width:1000px){

.faq-container{
grid-template-columns:1fr;
}

.hero-text h1{
font-size:52px;
}

}

@media(max-width:700px){

nav{
display:none;
}

.hero-text h1{
font-size:40px;
}

.hero-text p{
font-size:16px;
}

.seo-container h2{
font-size:36px;
}

}