.hero-about {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-start;
    padding-top: 70px;
    overflow: hidden;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}

.hero-about h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 500;
    z-index: 1;
}

.hero-about .container {
    margin: 0;
}

.about-story {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 48px;
}

.about-story-item {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  margin-bottom: 16px;
}

.about-story-item:last-child {
  margin-bottom: 0;
}

.about-story-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

.about-story-text {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 500px;
  padding: 60px 8% 60px 28%;
}

.about-story-item:nth-child(even) .about-story-text {
  justify-content: flex-start;
  padding: 60px 28% 60px 8%;
}

.about-story-text p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 1080px;
}

.about-tagline-section {
  padding: 96px 24px;
  text-align: center;
}

.about-tagline-section p {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
}

@media (max-width: 900px) {
  .hero-about h1 {
    font-size: 2.5rem;
  }

  .about-story-item,
  .about-story-text {
    min-height: 380px;
  }

  .about-story-text,
  .about-story-item:nth-child(even) .about-story-text {
    padding: 40px 6% 40px 8%;
    justify-content: flex-start;
  }

  .about-story-text p {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-about h1 {
    font-size: 1.9rem;
  }

  .about-story-item,
  .about-story-text {
    min-height: 320px;
  }

  .about-tagline-section {
    padding: 56px 24px;
  }

  .about-tagline-section p {
    font-size: 1.3rem;
  }
}