.hero-block {
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1024px !important;
  margin: 0 auto;
  gap: 60px;
}

.hero-left {
  flex-basis: calc(66.667% - 10px) !important;
    max-width: calc(66.667% - 10px) !important;
}

.hero-logo {
  width: 234px;
  margin-bottom: 30px;
}

.hero-title {
  font-size: 3.5rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1.05em;
    letter-spacing: 0em;
    margin: 0;
}

.hero-right {
  flex-basis: calc(33.333% - 20px) !important;
    max-width: calc(33.333% - 20px) !important;
}

.hero-subheading {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.hero-description {
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.6;
}

.hero-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-link-button {
  padding: 12px 20px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s;
  width: fit-content;
  line-height: 1em;
}

.hero-link-button:hover {
    color: #FFFFFF;
    border-color: rgb(161, 31, 255);
    background: linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)) rgb(161, 31, 255) !important;
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.625rem;
    }
    .hero-inner {
        flex-direction: column;
    }
    .hero-left, .hero-right {
        width: 100%;
        max-width: 100% !important;
    }
}