* { 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: #000;
  color: #fff;
  padding: 1em 0;
}

.logo {
  height: 50px;
  vertical-align: middle;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  background: url('hero-bg.jpg.jpg') center/cover no-repeat;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.about, .services, .contact {
  padding: 60px 0;
}

.about h2, .services h2, .contact h2 {
  margin-bottom: 20px;
  font-size: 1.8em;
  color: #222;
}

.services ul {
  list-style: disc;
  margin-left: 2em;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

input, textarea {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: #000;
  color: #fff;
  border: none;
  padding: 0.75em;
  cursor: pointer;
  font-size: 1em;
  border-radius: 4px;
  transition: background 0.3s ease;
}

button:hover {
  background: #333;
}

footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 1em 0;
  font-size: 0.9em;
}

.whatsapp-link {
  color: #25D366;
  font-weight: bold;
  text-decoration: none;
}

.whatsapp-link:hover {
  color: #128C7E;
}
