body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0a0a0a;
  color: #fff;
}

.hero {
  background: url('img1.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0,0,0,0.4);
  text-align: center;
  padding: 20px;
}

.logo {
  max-width: 200px;
}

.logo.grande {
  max-width: 400px;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  border-bottom: 2px solid #444;
  padding-bottom: 10px;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  margin: 10px 0;
}

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.contact a {
  color: #4da6ff;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
}