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

body{
  background:#f5f5f5;
  color:#222;
  line-height:1.8;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

header{
  background:#000;
  color:#fff;
  padding:40px 20px;
  text-align:center;
}

header h1{
  font-size:42px;
  margin-bottom:10px;
}

.buttons{
  margin-top:20px;
}

.buttons a{
  display:inline-block;
  background:#d4af37;
  color:#000;
  padding:12px 25px;
  margin:5px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
  transition: 0.3s;
}

.buttons a:hover {
  background: #b8962d;
  transform: scale(1.05);
}

.hero{
  background:url('images/hero.jpg') center/cover;
  height:500px;
  position:relative;
}

.overlay{
  background:rgba(0,0,0,0.6);
  color:#fff;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.overlay h2{
  font-size:45px;
  margin-bottom:20px;
}

.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
  margin-top:60px;
  margin-bottom:60px;
}

.card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.card h3{
  padding:15px;
  font-size:24px;
}

.card p{
  padding:0 15px 20px;
}

.seo-text{
  background:#fff;
  padding:40px;
  border-radius:12px;
  margin-bottom:50px;
}

.contact{
  text-align:center;
  margin-bottom:50px;
}

.contact a{
  display:block;
  text-decoration:none;
  color:#d4af37;
  font-size:24px;
  margin:10px;
  font-weight: bold;
}

footer{
  background:#000;
  color:#fff;
  text-align:center;
  padding:20px;
}

@media(max-width:768px){

header h1{
  font-size:30px;
}

.overlay h2{
  font-size:32px;
}

}
