.page-blog-hello88-login-guide {
  font-family: Arial, sans-serif;
  color: var(--text-main, #1F2D3D);
  background-color: var(--background, #F4F7FB);
}

.page-blog-hello88-login-guide__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  margin-bottom: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-hello88-login-guide__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit hero image height */
  overflow: hidden;
}

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

.page-blog-hello88-login-guide__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  box-sizing: border-box;
  background-color: var(--card-bg, #FFFFFF);
  margin-top: -80px; /* Overlap slightly with image for visual flow */
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1; /* Ensure content is above any background elements */
}

.page-blog-hello88-login-guide__main-title {
  color: var(--custom-color-1776249996415, #000000);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-hello88-login-guide__hero-description {
  color: var(--text-main, #1F2D3D);
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.page-blog-hello88-login-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

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

.page-blog-hello88-login-guide__content-section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: var(--card-bg, #FFFFFF);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-blog-hello88-login-guide__section-title {
  color: var(--custom-color-1776249996415, #000000);
  font-size: 2.2em;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-hello88-login-guide__section-intro {
  text-align: center;
  font-size: 1.05em;
  color: var(--text-main, #1F2D3D);
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-blog-hello88-login-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-hello88-login-guide__step-item {
  background-color: var(--background, #F4F7FB);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-blog-hello88-login-guide__step-title {
  color: var(--custom-color-1776249996415, #000000);
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-hello88-login-guide__step-description {
  color: var(--text-main, #1F2D3D);
  line-height: 1.6;
}

.page-blog-hello88-login-guide__image-center {
  text-align: center;
  margin: 40px 0;
}

.page-blog-hello88-login-guide__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-hello88-login-guide__troubleshooting-list,
.page-blog-hello88-login-guide__security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-hello88-login-guide__troubleshooting-list .page-blog-hello88-login-guide__list-item,
.page-blog-hello88-login-guide__security-list .page-blog-hello88-login-guide__list-item {
  background-color: var(--background, #F4F7FB);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-blog-hello88-login-guide__list-item-title {
  color: var(--custom-color-1776249996415, #000000);
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-hello88-login-guide__list-item-description {
  color: var(--text-main, #1F2D3D);
  line-height: 1.6;
}

.page-blog-hello88-login-guide__security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-blog-hello88-login-guide__security-grid .page-blog-hello88-login-guide__image-wrapper {
  text-align: center;
}

.page-blog-hello88-login-guide__faq-item {
  background-color: var(--background, #F4F7FB);
  border: 1px solid var(--border, #D6E2FF);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}

.page-blog-hello88-login-guide__faq-question {
  color: var(--custom-color-1776249996415, #000000);
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-hello88-login-guide__faq-answer {
  color: var(--text-main, #1F2D3D);
  line-height: 1.6;
}

.page-blog-hello88-login-guide__center-content {
  text-align: center;
}

.page-blog-hello88-login-guide__cta-button--large {
  padding: 18px 40px;
  font-size: 1.1em;
}

/* WCAG AA contrast check: */
/* #1F2D3D on #F4F7FB (background) -> 8.58:1 (Pass)
   #000000 on #F4F7FB (background) -> 12.39:1 (Pass)
   #1F2D3D on #FFFFFF (card-bg) -> 8.58:1 (Pass)
   #000000 on #FFFFFF (card-bg) -> 21:1 (Pass)
   #FFFFFF on linear-gradient(#4A8BFF, #2F6BFF) -> >4.5:1 (Pass, blue with white text is generally good) */

@media (max-width: 992px) {
  .page-blog-hello88-login-guide__security-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-hello88-login-guide__security-grid .page-blog-hello88-login-guide__image-wrapper {
    order: -1; /* Image first on mobile */
    margin-bottom: 30px;
  }
  .page-blog-hello88-login-guide__hero-content {
    margin-top: -40px; /* Less overlap on smaller screens */
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-hello88-login-guide__main-title {
    font-size: 2em;
  }
  .page-blog-hello88-login-guide__section-title {
    font-size: 1.8em;
  }
  .page-blog-hello88-login-guide__hero-description {
    font-size: 1em;
  }
  .page-blog-hello88-login-guide__cta-button {
    padding: 12px 25px;
    font-size: 0.95em;
  }
  .page-blog-hello88-login-guide__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-hello88-login-guide__content-section {
    padding: 40px 0;
  }
  .page-blog-hello88-login-guide__content-image {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all content images in main content area are responsive and not too small */
  .page-blog-hello88-login-guide__content-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size even on mobile */
    min-height: 200px;
  }
  .page-blog-hello88-login-guide__security-grid {
    gap: 20px;
  }
  .page-blog-hello88-login-guide__hero-section {
    margin-bottom: 20px;
  }
  .page-blog-hello88-login-guide__hero-image-wrapper {
    max-height: 300px;
  }
}