/* Image banner */
.image-banner {
  position: relative;
  display: flex;
  height: 90vh;
  width: 100%;
}
.image-banner img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Our Story Section */
.our-story {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 30px 14%;
  position: relative;
  overflow: hidden;
}
.our-story-container {
  display: flex;
  align-items: center;
  gap: 40px;
}
.our-story-container img {
  flex-shrink: 0;
}
.our-story-content {
  flex: 1;
}
.our-story-content h1 {
  margin-bottom: 24px;
}
.our-story-content p {
  margin-bottom: 16px;
}

/* Background Palm Illustrations */
.palm-left,
.palm-right {
  position: absolute;
  pointer-events: none;
}
.palm-left {
  left: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
}
.palm-right {
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 450px;
}

/* Mission & Values */
.mission-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mission-image {
  width: 40%;
  height: auto;
}
.mission-content {
  flex: 1;
  max-width: 45%;
}
.mission-content h2,
p {
  margin-bottom: 32px;
}
.mission-content h3 {
  margin-bottom: 8px;
}

/* Relax & Indulge */
.relax-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.relax-image {
  width: 50%;
  height: auto;
}
.relax-content {
  flex: 1;
  padding: 30px;
  padding-left: 14%;
}
.relax-content h2,
p {
  margin-bottom: 24px;
}
.relax-content h3 {
  margin-bottom: 8px;
}
.palm {
  position: absolute;
  pointer-events: none;
  left: -8%;
  transform: translateY(-80%);
  width: 400px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .our-story {
    padding: 10px 5%;
  }

  .our-story-container {
    flex-direction: column;
    gap: 0;
  }

  .our-story-container img {
    width: 200px;
    margin-bottom: 20px;
  }

  .palm-left,
  .palm-right,
  .palm {
    display: none;
  }

  .mission-container {
    flex-direction: column;
    gap: 0;
    padding: 10px 5%;
  }
  .mission-image {
    width: 100%;
  }
  .mission-content {
    flex: 1;
    max-width: 100%;
  }

  .relax-container {
    flex-direction: column;
  }
  .relax-image {
    width: 100%;
    padding: 20px 5%;
  }
  .relax-content {
    flex: 1;
    max-width: 100%;
    padding: 0 5%;
  }
}
