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

body{
  font-family:'Poppins', sans-serif;
}

.hero{
  height:100vh;
  background:url('https://images.unsplash.com/photo-1503387762-592deb58ef4e') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.content{
  position:relative;
  z-index:2;
  max-width:800px;
  padding:20px;
}

h1{
  font-size:3rem;
  font-weight:700;
  margin-bottom:20px;
}

.highlight{
  color:#f08a24;
  font-weight:600;
  margin:15px 0;
}

.contact-box{
  margin-top:30px;
  padding:25px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:10px;
}

.contact-box h3{
  margin-bottom:15px;
}

.footer-text{
  margin-top:40px;
  font-size:0.9rem;
  opacity:0.8;
}

@media(max-width:768px){
  h1{
    font-size:2rem;
  }
}
