body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #111;
  color: #f9f9f9;
}

header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(90deg, #000, #333);
  color: gold;
}

.tagline {
  font-style: italic;
  font-size: 1.2em;
  color: #ffdd66;
}

.hero {
  background: url('../images/hero.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 15px;
}

.services {
  padding: 60px 20px;
  text-align: center;
  background-color: #1b1b1b;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid gold;
}

.service h3 {
  color: #ffdd66;
  margin-top: 15px;
}

footer {
  background-color: #000;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #bbb;
  border-top: 1px solid gold;
}
