*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
font-family:Georgia,serif;
background:#e6e6e6;
overflow-x:hidden;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#d9d9d9;
flex-wrap:wrap;
}

.logo{
font-size:30px;
font-weight:bold;
}

.nav-buttons a{
margin-left:25px;
text-decoration:none;
color:black;
font-size:20px;
padding:8px 12px;
border-radius:8px;
transition:0.2s;
}

.nav-buttons a:hover{
background:#bfbfbf;
}

/* HERO */

.hero{
background:linear-gradient(to bottom,#ff6600,#ffd400);
border-radius:40px;
margin:30px;
padding:60px;
text-align:center;
}

.hero h1{
font-size:60px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
max-width:800px;
margin:auto;
line-height:1.6;
}

/* CONTENT BOX */

.content-box{
background:linear-gradient(to bottom,#ff6600,#ffd400);
margin:30px;
padding:60px;
border-radius:40px;
text-align:center;
}

.content-box h1{
font-size:60px;
margin-bottom:30px;
}

.content-box p{
font-size:20px;
max-width:900px;
margin:auto;
line-height:1.6;
}

/* SERVICES */

.services-container{
background:linear-gradient(to bottom,#ff6600,#ffd400);
margin:30px;
padding:60px;
border-radius:40px;
}

.services-container h1{
font-size:60px;
margin-bottom:40px;
}

.services-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.service h3{
font-size:22px;
margin-bottom:10px;
}

.service p{
font-size:18px;
line-height:1.6;
}

.service ul{
list-style:none;
}

.service li{
margin:6px 0;
}

/* WHATSAPP */

.whatsapp-float{
position:fixed;
right:20px;
bottom:120px;
}

.whatsapp-float img{
width:50px;
}

/* MOBILE */

@media (max-width:768px){

.navbar{
flex-direction:column;
align-items:flex-start;
}

.nav-buttons{
margin-top:10px;
}

.hero{
padding:40px 25px;
}

.hero h1{
font-size:40px;
}

.hero p{
font-size:16px;
}

.content-box{
padding:40px 25px;
}

.content-box h1{
font-size:38px;
}

.content-box p{
font-size:16px;
}

.services-container{
padding:40px 25px;
}

.services-container h1{
font-size:38px;
}

.services-grid{
grid-template-columns:1fr;
gap:25px;
}

}