body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

.hero {
  background: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
}

section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

.services .cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
}

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
}

input, textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  padding: 12px;
  border: none;
  background: black;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

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