.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 759px;
  padding: 40px 160px;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  right: 5%;
  top: 0;
  width: 50%;
  height: 100%;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
}

.hero__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__welcome {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__welcome-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #ffffff;
  text-align: left;
  border-bottom: 2px solid #fff;
  width: fit-content;
}

.hero__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 76px;
  color: #ffffff;
  line-height: normal;
}

.hero__subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  line-height: normal;
}

.hero__features {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 120px;
  padding: 8px;
  flex-shrink: 0;
}

.hero__feature-icon img {
  width: 24px;
  height: 24px;
}

.hero__feature-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 228px;
}

.hero__feature-text h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  line-height: 28px;
}

.hero__feature-text p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: normal;
}

@media (max-width: 1400px) {
  .hero {
    padding: 40px 80px;
  }

  .hero__title {
    font-size: 60px;
  }
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    min-height: auto;
  }

  .hero__image {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    opacity: 0.3;
  }

  .hero__content {
    max-width: 100%;
    align-items: center;
  }

  .hero__heading {
    align-items: center;
  }

  .hero__welcome-text {
    font-size: 24px;
    text-align: center;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__subtitle {
    font-size: 20px;
  }

  .hero__features {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__feature {
    text-align: left;
  }
}

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

  .hero__title {
    font-size: 36px;
  }

  .hero__welcome-text {
    font-size: 18px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__content {
    gap: 24px;
  }

  .hero__heading {
    gap: 12px;
  }

  .hero__features {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero__feature-icon {
    width: 32px;
    height: 32px;
  }

  .hero__feature-text h3 {
    font-size: 16px;
  }

  .hero__feature-text p {
    font-size: 12px;
  }
}
