*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#fff;
  color:#111;
}

.container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
}

header{
  background:#fff;
  border-bottom:1px solid #eee;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 0;
  flex-wrap:wrap;
  gap:20px;
}

.logo{
  font-size:36px;
  font-weight:900;
}

.logo span{
  color:#d71920;
}

.phone{
  text-decoration:none;
  color:#d71920;
  font-size:24px;
  font-weight:900;
}

.hero{
  background:#111;
  color:white;
  padding:80px 20px;
  text-align:center;
}

.hero-content{
  max-width:900px;
  margin:auto;
}

.small-title{
  color:#ff3b3b;
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:15px;
}

.hero h1{
  font-size:72px;
  line-height:1;
  margin-bottom:25px;
}

.description{
  font-size:24px;
  line-height:1.5;
  max-width:750px;
  margin:0 auto 35px;
  color:#ddd;
}

.hero img{
  width:100%;
  max-width:650px;
  border-radius:20px;
  margin-top:35px;
}

.buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:18px 34px;
  border-radius:14px;
  text-decoration:none;
  font-size:20px;
  font-weight:900;
}

.red{
  background:#d71920;
  color:#fff;
}

.white{
  background:#fff;
  color:#111;
}

.info-section{
  padding:60px 0;
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.info-box{
  border:1px solid #eee;
  border-radius:18px;
  padding:25px;
}

.info-box small{
  display:block;
  color:#777;
  margin-bottom:8px;
}

.info-box strong{
  font-size:28px;
}

.services{
  background:#f7f7f7;
  padding:80px 0;
  text-align:center;
}

.services h2{
  font-size:52px;
  margin-bottom:40px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.service-card{
  background:#fff;
  padding:40px 20px;
  border-radius:18px;
  font-size:26px;
  font-weight:900;
}

.bottom-cta{
  background:#111;
  color:#fff;
  text-align:center;
  padding:80px 20px;
}

.bottom-cta h2{
  font-size:54px;
  margin-bottom:20px;
}

.bottom-cta p{
  font-size:24px;
  color:#ddd;
  margin-bottom:35px;
}

.big{
  font-size:30px;
}

@media(max-width:900px){

  .hero h1{
    font-size:52px;
  }

  .description{
    font-size:20px;
  }

  .info-grid,
  .service-grid{
    grid-template-columns:1fr;
  }

  .phone{
    font-size:18px;
  }

}
