.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 756px;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
}
.hero-background {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  background-image: url('images/24_39.svg'), url('images/24_52.svg');
  background-size: auto, auto;
  background-position: center, center;
  background-repeat: repeat-x, repeat-x;

}
.bg-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  height: auto;
  user-select: none;
  pointer-events: none;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 124px;
  position: relative;
  z-index: 1;
}
.hero-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 60px;
  color: var(--color-primary-text);
  margin: 0;
}
.hero-subtitle {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-secondary-text);
  margin: 0;
  max-width: 646px;
}
.hero-announcement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.announcement-icon {
  width: 48px;
  height: 20px;
}
.announcement-text {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-secondary-text);
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 80px 20px;
  }
  .hero-content {
    gap: 80px;
  }
  .hero-title {
    font-size: 36px;
    line-height: 1.25;
  }
  .hero-subtitle {
    font-size: 18px;
  }
}
