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

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

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

.hero-content {
  position: relative;
  color: #fff;
  z-index: 1;
  padding: 2rem;
}

.logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
}

.subtitle {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.cta {
  margin-top: 2rem;
  display: inline-block;
  background: #f7c600;
  color: #000;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta:hover {
  background: #ffd700;
}

.section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-card {
  width: 300px;
  text-align: center;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background: #000;
  color: #fff;
  padding: 0.8rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #333;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #f5f5f5;
  font-size: 0.9rem;
}
