.about-story {
  padding: 100px 0;
  background-color: #fff;
}

.about-story__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-story__image {
  flex: 1 1 50%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.about-story__content {
  flex: 1 1 45%;
}

.about-story__content h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 1rem;
}

.about-story__content p {
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .about-story__container {
    flex-direction: column;
  }

  .about-story__image {
    width: 100%;
    min-height: 300px;
  }

  .about-story__content {
    text-align: center;
  }
}
