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

body{
background:white;
color:#111;
}

.container{
max-width:1200px;
margin:auto;
padding:60px 20px;
}

.topbar{
background:#000;
color:white;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:22px;
font-weight:700;
color:#39ff14;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:500;
}

.hero{
background:linear-gradient(135deg,#000,#0f0f0f);
color:white;
text-align:center;
padding:120px 20px;
}

.hero h1{
font-size:42px;
color:#39ff14;
margin-bottom:10px;
}

.hero-buttons{
margin-top:30px;
}

.primary{
background:#39ff14;
color:black;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
margin-right:10px;
}

.secondary{
border:2px solid #39ff14;
color:#39ff14;
padding:12px 26px;
border-radius:8px;
text-decoration:none;
}

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

.service-card{
background:white;
border:2px solid #39ff14;
border-radius:10px;
padding:30px;
transition:0.3s;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.service-card h3{
color:#000;
margin-bottom:10px;
}

.service-card a{
display:inline-block;
margin-top:15px;
background:#39ff14;
padding:10px 18px;
border-radius:6px;
color:black;
text-decoration:none;
font-weight:600;
}

.info{
background:#000;
color:white;
text-align:center;
}

.info h2{
color:#39ff14;
margin-bottom:10px;
}

.faq h2{
text-align:center;
margin-bottom:40px;
}

.faq-item{
background:#f7f7f7;
padding:20px;
border-radius:8px;
margin-bottom:15px;
border-left:4px solid #39ff14;
}

footer{
background:#000;
color:white;
text-align:center;
padding:30px 0;
margin-top:40px;
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
padding:14px 20px;
border-radius:30px;
text-decoration:none;
font-weight:600;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}
