body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

.site-header {
  background-color: white;
  border-bottom: 1px solid #eee;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 60px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #5e0190;
  font-weight: bold;
}

.hero-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #5e0190;
  color: white;
}

.hero-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-subheading {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-cta {
  background-color: #cbb26a;
  color: black;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  z-index: 1000;
}

.mobile-menu.active {
  display: block;
}

@media screen and (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}