/* style/resources-helo888-registration-login-guide.css */
.page-resources-helo888-registration-login-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF;
}

.page-resources-helo888-registration-login-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  background-color: #017439; /* Brand primary color */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  overflow: hidden;
}

.page-resources-helo888-registration-login-guide__hero-content {
  max-width: 900px;
  z-index: 2;
  position: relative;
}

.page-resources-helo888-registration-login-guide__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFF00; /* Register/Login font color */
}

.page-resources-helo888-registration-login-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-resources-helo888-registration-login-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-helo888-registration-login-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-resources-helo888-registration-login-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  z-index: 2;
}

.page-resources-helo888-registration-login-guide__btn-primary,
.page-resources-helo888-registration-login-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-helo888-registration-login-guide__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border-color: #C30808;
}

.page-resources-helo888-registration-login-guide__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-resources-helo888-registration-login-guide__btn-secondary {
  background-color: #017439; /* Brand primary color */
  color: #FFFFFF;
  border-color: #017439;
}

.page-resources-helo888-registration-login-guide__btn-secondary:hover {
  background-color: #005a2e;
  border-color: #005a2e;
}

.page-resources-helo888-registration-login-guide__btn-full-width {
  width: 100%;
  max-width: 300px;
  margin: 15px auto;
}

.page-resources-helo888-registration-login-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-resources-helo888-registration-login-guide__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand primary color */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: bold;
}

.page-resources-helo888-registration-login-guide__sub-title {
  font-size: 1.8em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-helo888-registration-login-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #333333;
}

.page-resources-helo888-registration-login-guide__inline-link {
  color: #017439;
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-helo888-registration-login-guide__inline-link:hover {
  color: #005a2e;
}

.page-resources-helo888-registration-login-guide__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-resources-helo888-registration-login-guide__image-text-layout--reversed {
  flex-direction: row-reverse;
}

.page-resources-helo888-registration-login-guide__text-block {
  flex: 1;
}

.page-resources-helo888-registration-login-guide__image-wrapper {
  flex: 1;
  min-width: 200px;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-resources-helo888-registration-login-guide__image-wrapper--center {
  max-width: 100%;
  margin: 40px auto;
}

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

.page-resources-helo888-registration-login-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 60px;
}

.page-resources-helo888-registration-login-guide__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #017439;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-helo888-registration-login-guide__list-item .page-resources-helo888-registration-login-guide__sub-title {
  color: #017439;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-helo888-registration-login-guide__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-helo888-registration-login-guide__benefit-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-resources-helo888-registration-login-guide__benefit-card:hover {
  transform: translateY(-5px);
}

.page-resources-helo888-registration-login-guide__card-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-helo888-registration-login-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-helo888-registration-login-guide__card-description {
  font-size: 1em;
  color: #555555;
}

.page-resources-helo888-registration-login-guide__video-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.page-resources-helo888-registration-login-guide__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-resources-helo888-registration-login-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-resources-helo888-registration-login-guide__video-caption {
  text-align: center;
  font-style: italic;
  color: #666666;
  margin-top: 15px;
  font-size: 0.95em;
}

.page-resources-helo888-registration-login-guide__faq-container {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-helo888-registration-login-guide__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-helo888-registration-login-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #f5f5f5;
  color: #017439;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-resources-helo888-registration-login-guide__faq-question:hover {
  background-color: #e0e0e0;
}

.page-resources-helo888-registration-login-guide__faq-title {
  margin: 0;
  color: #017439;
  font-size: 1.2em;
}

.page-resources-helo888-registration-login-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #017439;
}

.page-resources-helo888-registration-login-guide__faq-item.active .page-resources-helo888-registration-login-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-helo888-registration-login-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
  color: #333333;
}

.page-resources-helo888-registration-login-guide__faq-item.active .page-resources-helo888-registration-login-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large for content */
  padding: 20px 25px;
}

.page-resources-helo888-registration-login-guide__faq-answer .page-resources-helo888-registration-login-guide__paragraph {
  margin-bottom: 0;
}

.page-resources-helo888-registration-login-guide__cta-buttons--bottom {
  margin-top: 60px;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-helo888-registration-login-guide__hero-title {
    font-size: 2.5em;
  }
  .page-resources-helo888-registration-login-guide__section-title {
    font-size: 2em;
  }
  .page-resources-helo888-registration-login-guide__sub-title {
    font-size: 1.5em;
  }
  .page-resources-helo888-registration-login-guide__image-text-layout {
    flex-direction: column;
  }
  .page-resources-helo888-registration-login-guide__image-text-layout--reversed {
    flex-direction: column;
  }
  .page-resources-helo888-registration-login-guide__image-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-resources-helo888-registration-login-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-helo888-registration-login-guide__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-resources-helo888-registration-login-guide__hero-title {
    font-size: 2em;
  }
  .page-resources-helo888-registration-login-guide__hero-description {
    font-size: 1.1em;
  }
  .page-resources-helo888-registration-login-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-resources-helo888-registration-login-guide__btn-primary,
  .page-resources-helo888-registration-login-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-helo888-registration-login-guide__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-helo888-registration-login-guide__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-resources-helo888-registration-login-guide__sub-title {
    font-size: 1.3em;
  }
  .page-resources-helo888-registration-login-guide__paragraph {
    font-size: 1em;
  }
  .page-resources-helo888-registration-login-guide__image-text-layout {
    gap: 20px;
    margin-bottom: 40px;
  }
  .page-resources-helo888-registration-login-guide__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  .page-resources-helo888-registration-login-guide__content-image,
  .page-resources-helo888-registration-login-guide__card-image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    display: block !important;
  }
  .page-resources-helo888-registration-login-guide__list-item {
    padding: 15px;
  }
  .page-resources-helo888-registration-login-guide__benefits-grid {
    gap: 20px;
  }
  .page-resources-helo888-registration-login-guide__benefit-card {
    padding: 20px;
  }
  .page-resources-helo888-registration-login-guide__video-wrapper {
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
    overflow: hidden !important;
  }
  .page-resources-helo888-registration-login-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-helo888-registration-login-guide__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-resources-helo888-registration-login-guide__faq-answer {
    padding: 0 20px;
  }
  .page-resources-helo888-registration-login-guide__faq-item.active .page-resources-helo888-registration-login-guide__faq-answer {
    padding: 15px 20px;
  }
}