body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #ffffff;
  color: #1f2937;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.logo {
  height: 40px;
}

.menu a {
  margin-left: 20px;
  text-decoration: none;
  color: #2563eb;
  font-weight: 500;
}

.menu a:hover {
  color: #1e40af;
}

/* HERO */
.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background-color: #f97316;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

.btn-primary:hover {
  background-color: #ea580c;
}
