.page-blog-hello88-registration-benefits {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-blog-hello88-registration-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-blog-hello88-registration-benefits__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
}

.page-blog-hello88-registration-benefits__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image wrapper */
  margin-bottom: 20px;
}

.page-blog-hello88-registration-benefits__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-hello88-registration-benefits__hero-content {
  max-width: 900px;
  padding: 0 20px 40px;
}

.page-blog-hello88-registration-benefits__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-hello88-registration-benefits__intro-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-blog-hello88-registration-benefits__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-hello88-registration-benefits__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-registration-benefits__cta-button--secondary {
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
}

.page-blog-hello88-registration-benefits__cta-button--support {
  background: #1F2D3D;
}

.page-blog-hello88-registration-benefits__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-blog-hello88-registration-benefits__paragraph {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-blog-hello88-registration-benefits__benefits-section,
.page-blog-hello88-registration-benefits__guide-section,
.page-blog-hello88-registration-benefits__security-section,
.page-blog-hello88-registration-benefits__conclusion-section {
  padding: 40px 0;
  background-color: #F4F7FB;
}

.page-blog-hello88-registration-benefits__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-hello88-registration-benefits__benefit-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-blog-hello88-registration-benefits__benefit-card:hover {
  transform: translateY(-5px);
}

.page-blog-hello88-registration-benefits__benefit-icon {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-hello88-registration-benefits__card-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-blog-hello88-registration-benefits__card-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-blog-hello88-registration-benefits__guide-content,
.page-blog-hello88-registration-benefits__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.page-blog-hello88-registration-benefits__guide-steps,
.page-blog-hello88-registration-benefits__security-text {
  flex: 1;
  min-width: 300px;
}

.page-blog-hello88-registration-benefits__guide-image-wrapper,
.page-blog-hello88-registration-benefits__security-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-blog-hello88-registration-benefits__guide-image,
.page-blog-hello88-registration-benefits__security-image {
  width: 100%;
  max-width: 600px; /* Max width for content images */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-blog-hello88-registration-benefits__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-blog-hello88-registration-benefits__list-item {
  counter-increment: step-counter;
  margin-bottom: 25px;
  position: relative;
  padding-left: 45px;
}

.page-blog-hello88-registration-benefits__list-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #2F6BFF;
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.page-blog-hello88-registration-benefits__step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 5px;
}

.page-blog-hello88-registration-benefits__step-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #1F2D3D;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-hello88-registration-benefits__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-hello88-registration-benefits__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-blog-hello88-registration-benefits__intro-text {
    font-size: 1rem;
  }

  .page-blog-hello88-registration-benefits__cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .page-blog-hello88-registration-benefits__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-hello88-registration-benefits__guide-content,
  .page-blog-hello88-registration-benefits__security-content {
    flex-direction: column;
  }

  .page-blog-hello88-registration-benefits__guide-image,
  .page-blog-hello88-registration-benefits__security-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all content area images are responsive and don't overflow */
  .page-blog-hello88-registration-benefits img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog-hello88-registration-benefits__container {
    padding: 15px;
  }

  .page-blog-hello88-registration-benefits__hero-content {
    padding: 0 15px 30px;
  }

  .page-blog-hello88-registration-benefits__main-title {
    font-size: 2rem;
  }

  .page-blog-hello88-registration-benefits__section-title {
    font-size: 1.6rem;
  }

  .page-blog-hello88-registration-benefits__step-title {
    font-size: 1.1rem;
  }

  .page-blog-hello88-registration-benefits__card-title {
    font-size: 1.2rem;
  }
}

/* Ensure content area images are at least 200px wide for larger screens */
.page-blog-hello88-registration-benefits__benefit-icon,
.page-blog-hello88-registration-benefits__guide-image,
.page-blog-hello88-registration-benefits__security-image {
  min-width: 200px;
  min-height: 200px;
}