/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1e2a78 0%, #384ede 100%);
  border-bottom-left-radius: 250px;
  border-bottom-right-radius: 250px;
  z-index: -1;
}

.hero-title {
  position: relative;
  margin-top: 200px;
  text-align: center;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
}
