
body{
font-family:Arial, Helvetica, sans-serif;
margin:0;
background:#0f0f0f;
color:white;
}

header{
text-align:center;
padding:60px 20px;
background:#111;
}

header h1{
font-size:40px;
margin-bottom:10px;
}

.cta{
background:#00c853;
padding:15px 25px;
border-radius:8px;
text-decoration:none;
color:white;
font-weight:bold;
}

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
padding:40px;
}

.card{
background:#1a1a1a;
border-radius:12px;
overflow:hidden;
text-align:center;
box-shadow:0 0 15px rgba(0,0,0,0.5);
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

.card h3{
margin:15px 0;
}

.price{
font-size:20px;
color:#00e676;
}

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

.btn{
padding:10px 15px;
border-radius:6px;
text-decoration:none;
color:white;
}

.info{
background:#444;
}

.buy{
background:#00c853;
}

.faq{
padding:40px;
background:#111;
}

.q{
margin-bottom:20px;
}

footer{
text-align:center;
padding:20px;
background:#000;
}
