.page-index-about-hello88 {
  padding-bottom: 40px;
  background-color: var(--background-color);
  color: var(--text-main);
}

.page-index-about-hello88__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background-color: var(--primary-color);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-index-about-hello88__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 20px; /* Space between image and content */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-about-hello88__hero-content {
  max-width: 900px;
  padding: 0 20px;
  position: relative; /* Ensure content is in normal flow below image */
  z-index: 1;
}

.page-index-about-hello88__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* No fixed font-size, rely on weight/line-height/spacing for hierarchy */
}

.page-index-about-hello88__hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-index-about-hello88__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: var(--button-gradient);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px var(--glow-color);
}

.page-index-about-hello88__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px var(--glow-color);
  opacity: 0.9;
}

.page-index-about-hello88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-about-hello88__mission-section,
.page-index-about-hello88__values-section,
.page-index-about-hello88__commitment-section {
  padding: 60px 0;
}

.page-index-about-hello88__mission-section {
  background-color: var(--card-bg);
}

.page-index-about-hello88__commitment-section {
  background-color: var(--background-color);
}

.page-index-about-hello88__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-black);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-about-hello88__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-index-about-hello88__section-paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-main);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-about-hello88__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-about-hello88__values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-index-about-hello88__values-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-about-hello88__values-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-about-hello88__values-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-about-hello88__values-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
}

.page-index-about-hello88__cta-button--bottom {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .page-index-about-hello88__main-title {
    font-size: 2.2rem;
  }
  .page-index-about-hello88__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-index-about-hello88__hero-section {
    padding-bottom: 30px;
  }
  .page-index-about-hello88__hero-image {
    margin-bottom: 15px;
  }
  .page-index-about-hello88__main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem); /* Clamp for H1 */
  }
  .page-index-about-hello88__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-index-about-hello88__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-index-about-hello88__mission-section,
  .page-index-about-hello88__values-section,
  .page-index-about-hello88__commitment-section {
    padding: 40px 0;
  }
  .page-index-about-hello88__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .page-index-about-hello88__section-paragraph {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-index-about-hello88__values-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-about-hello88__values-item {
    padding: 25px;
  }
  .page-index-about-hello88__values-heading {
    font-size: 1.3rem;
  }
  .page-index-about-hello88__content-image {
    margin: 30px auto;
    max-width: 100%;
    height: auto;
  }
  .page-index-about-hello88__cta-button--bottom {
    margin-top: 30px;
  }

  /* Mobile content area image overflow prevention */
  .page-index-about-hello88 img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-index-about-hello88__hero-section {
    padding-bottom: 20px;
  }
  .page-index-about-hello88__main-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .page-index-about-hello88__section-title {
    font-size: 1.5rem;
  }
  .page-index-about-hello88__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}