body{
margin:0;
font-family:Arial;
background:#070b18;
color:white;
}

header{
display:flex;
justify-content:space-between;
padding:20px 8%;
background:black;
}

.logo{
color:#d4af37;
font-size:22px;
}

nav a{
margin-left:20px;
text-decoration:none;
color:white;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
url("https://images.unsplash.com/photo-1460925895917-afdab827c52f");
background-size:cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.primary{
background:#d4af37;
color:black;
padding:14px 30px;
text-decoration:none;
border-radius:6px;
}

.services{
padding:80px 10%;
text-align:center;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.service{
background:#111;
padding:30px;
border-radius:10px;
}

.plan-btn{
display:inline-block;
background:#d4af37;
color:black;
padding:10px 20px;
border-radius:5px;
text-decoration:none;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px;
border-radius:50%;
font-size:24px;
}