* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
}

/* HERO */
.hero {
  height: 90vh;
  background: url("hero.jpg") center/cover no-repeat;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.overlay h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 18px;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.section h2 {
  margin-bottom: 20px;
  color: #0d6efd;
}

.section.dark {
  background: #f5f5f5;
}

.services {
  list-style: none;
}

.services li {
  padding: 10px 0;
}

/* CONTACT */
.contact-form {
  max-width: 500px;
  margin: 20px auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
}

.contact-form button {
  padding: 12px 30px;
  border: none;
  background: #0d6efd;
  color: white;
  cursor: pointer;
}

.contact-form button:hover {
  background: #084298;
}

.contact-info {
  margin-top: 30px;
}

/* FOOTER */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
