/* style/blog-hk79-registration-guide.css */
.page-blog-hk79-registration-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Assuming body background is light */
}

.page-blog-hk79-registration-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #f5f5f5;
  text-align: center;
}

.page-blog-hk79-registration-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-blog-hk79-registration-guide__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-hk79-registration-guide__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-hk79-registration-guide__main-title {
  color: #26A9E0;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-blog-hk79-registration-guide__subtitle {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-blog-hk79-registration-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-hk79-registration-guide__btn-primary,
.page-blog-hk79-registration-guide__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button responsiveness */
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-hk79-registration-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-hk79-registration-guide__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-blog-hk79-registration-guide__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-hk79-registration-guide__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1e87c0;
  border-color: #1e87c0;
}

.page-blog-hk79-registration-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-top: -50px; /* Pull content up over hero section */
  position: relative;
  z-index: 1;
}

.page-blog-hk79-registration-guide__section-intro,
.page-blog-hk79-registration-guide__step-by-step,
.page-blog-hk79-registration-guide__benefits,
.page-blog-hk79-registration-guide__tips,
.page-blog-hk79-registration-guide__faq,
.page-blog-hk79-registration-guide__conclusion {
  margin-bottom: 40px;
}

.page-blog-hk79-registration-guide__heading {
  color: #26A9E0;
  font-size: 2em;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-hk79-registration-guide__sub-heading {
  color: #EA7C07; /* Login color for sub-headings */
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-hk79-registration-guide__step-item {
  background-color: #f9f9f9;
  border-left: 5px solid #26A9E0;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.page-blog-hk79-registration-guide__step-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-hk79-registration-guide__btn-step {
  margin-top: 20px;
}

.page-blog-hk79-registration-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-hk79-registration-guide__list li {
  margin-bottom: 10px;
  color: #555555;
}

.page-blog-hk79-registration-guide__faq-list {
  margin-top: 30px;
}

.page-blog-hk79-registration-guide__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-hk79-registration-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #26A9E0;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  list-style: none; /* For <summary> */
}

.page-blog-hk79-registration-guide__faq-question::-webkit-details-marker {
  display: none; /* For <summary> */
}

.page-blog-hk79-registration-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-hk79-registration-guide__faq-item[open] .page-blog-hk79-registration-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-hk79-registration-guide__faq-answer {
  padding: 20px 25px;
  background-color: #ffffff;
  color: #333333;
  border-top: 1px solid #eee;
}

.page-blog-hk79-registration-guide__faq-answer p {
  margin: 0;
}

.page-blog-hk79-registration-guide__conclusion {
  text-align: center;
  padding: 30px;
  background-color: #e0f2f7;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-hk79-registration-guide__main-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-hk79-registration-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-hk79-registration-guide__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-hk79-registration-guide__main-title {
    font-size: 2em;
  }

  .page-blog-hk79-registration-guide__subtitle {
    font-size: 1em;
  }

  .page-blog-hk79-registration-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-hk79-registration-guide__btn-primary,
  .page-blog-hk79-registration-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-hk79-registration-guide__content-area {
    padding: 20px 15px;
    margin-top: -30px;
  }

  .page-blog-hk79-registration-guide__heading {
    font-size: 1.8em;
  }

  .page-blog-hk79-registration-guide__sub-heading {
    font-size: 1.3em;
  }

  .page-blog-hk79-registration-guide__step-item {
    padding: 20px;
  }

  .page-blog-hk79-registration-guide__list {
    margin-left: 15px;
  }

  .page-blog-hk79-registration-guide__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-hk79-registration-guide__faq-answer {
    padding: 15px 20px;
  }
  
  /* Mobile image responsiveness */
  .page-blog-hk79-registration-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hk79-registration-guide__section,
  .page-blog-hk79-registration-guide__card,
  .page-blog-hk79-registration-guide__container,
  .page-blog-hk79-registration-guide__hero-image-wrapper,
  .page-blog-hk79-registration-guide__step-item,
  .page-blog-hk79-registration-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-blog-hk79-registration-guide__content-area, 
  .page-blog-hk79-registration-guide__conclusion {
      padding-left: 15px !important;
      padding-right: 15px !important;
  }
}

/* Ensure no filter on images */
.page-blog-hk79-registration-guide img {
  filter: none;
}

/* Content area image size check - min 200px */
.page-blog-hk79-registration-guide__content-area img {
  min-width: 200px;
  min-height: 200px;
}

/* Buttons specific styling for contrast */
.page-blog-hk79-registration-guide__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-hk79-registration-guide__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

/* Sub-heading color check */
.page-blog-hk79-registration-guide__sub-heading {
  color: #EA7C07; /* Using 'Login' color */
}

/* FAQ question color check */
.page-blog-hk79-registration-guide__faq-question {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Text color for light backgrounds */
.page-blog-hk79-registration-guide p,
.page-blog-hk79-registration-guide li {
  color: #333333;
}