body,html{margin:0;outline:none;padding:0}
.hero {
  position: relative;
  background: #2E46B8;
  color: white;
  padding: 100px 8%;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Funnel Display', sans-serif;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
}

.hero h1 span {
  color: #F5F000;
}

.hero p {
  margin-top: 25px;
  font-family: 'Gantari', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  max-width: 500px;
}

.hero-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background: #F5F000;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.hero-button:hover {
  background: #e6e100;
}

.hero-shape {
  position: absolute;
  right: -150px;
  bottom: -150px;
  width: 500px;
  height: 500px;
  border: 80px solid #D9D9D9;
  border-radius: 50%;
  z-index: 1;
}

.hero-accent {
  position: absolute;
  right: 0;
  top: 50%;
  width: 80px;
  height: 80px;
  background: #F5F000;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .hero {
    padding: 70px 6%;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-shape {
    width: 350px;
    height: 350px;
    border-width: 50px;
    right: -120px;
    bottom: -120px;
  }
}
