.hero-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    rgba(247, 163, 146, 0.95),
    rgba(90, 106, 140, 0.95)
  );
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: left;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #f7a392;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #e56d5c;
}

.hero-image-wrapper {
  max-width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Адаптивные правки */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    margin-bottom: 2rem;
  }
}
