/* style/register-login-hi88-step-by-step-registration.css */

.page-register-login-hi88-step-by-step-registration {
  font-family: 'Arial', sans-serif;
  color: #0A192F; /* Dark Navy Blue for text */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light background for readability */
}

.page-register-login-hi88-step-by-step-registration__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register-login-hi88-step-by-step-registration__hero-section {
  background-color: #0A192F; /* Main dark background */
  color: #FFD700; /* Gold text for contrast */
  padding: 80px 0;
  text-align: center;
}

.page-register-login-hi88-step-by-step-registration__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
}

.page-register-login-hi88-step-by-step-registration__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-register-login-hi88-step-by-step-registration__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-register-login-hi88-step-by-step-registration__btn--hero {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark Navy Blue text */
}

.page-register-login-hi88-step-by-step-registration__btn--hero:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-register-login-hi88-step-by-step-registration__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark Navy Blue text */
}

.page-register-login-hi88-step-by-step-registration__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-register-login-hi88-step-by-step-registration__btn--secondary {
  background-color: #0A192F; /* Dark Navy Blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-register-login-hi88-step-by-step-registration__btn--secondary:hover {
  background-color: #1a2e4d;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-register-login-hi88-step-by-step-registration__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-register-login-hi88-step-by-step-registration__section:last-of-type {
  border-bottom: none;
}

.page-register-login-hi88-step-by-step-registration__section:nth-child(even) {
  background-color: #f0f4f7; /* Slightly lighter background for alternating sections */
}

.page-register-login-hi88-step-by-step-registration__heading {
  font-size: 2.5em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-register-login-hi88-step-by-step-registration__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-register-login-hi88-step-by-step-registration__introduction p,
.page-register-login-hi88-step-by-step-registration__conclusion p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-register-login-hi88-step-by-step-registration__list {
  list-style: disc;
  margin-left: 20px;
  padding: 0;
  font-size: 1.05em;
}

.page-register-login-hi88-step-by-step-registration__list li {
  margin-bottom: 10px;
}

.page-register-login-hi88-step-by-step-registration__list--small {
  list-style: disc;
  margin-left: 20px;
  padding: 0;
  font-size: 1em;
}

.page-register-login-hi88-step-by-step-registration__list--small li {
  margin-bottom: 5px;
}

.page-register-login-hi88-step-by-step-registration__guide-steps .page-register-login-hi88-step-by-step-registration__step {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register-login-hi88-step-by-step-registration__step-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-register-login-hi88-step-by-step-registration__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-register-login-hi88-step-by-step-registration__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-register-login-hi88-step-by-step-registration__image-wrapper figcaption {
  font-style: italic;
  color: #555;
  margin-top: 10px;
  font-size: 0.95em;
}

.page-register-login-hi88-step-by-step-registration__faq-item {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-register-login-hi88-step-by-step-registration__faq-question {
  font-size: 1.3em;
  color: #0A192F;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-register-login-hi88-step-by-step-registration__faq-question::before {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-register-login-hi88-step-by-step-registration__faq-question.active::before {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-register-login-hi88-step-by-step-registration__faq-answer {
  font-size: 1em;
  color: #333;
  display: none;
  padding-top: 10px;
  border-top: 1px dashed #eee;
  margin-top: 10px;
}

.page-register-login-hi88-step-by-step-registration__faq-answer.active {
  display: block;
}

.page-register-login-hi88-step-by-step-registration__copyright {
  text-align: center;
  padding: 30px 20px;
  background-color: #0A192F;
  color: #e0e0e0;
  font-size: 0.9em;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-register-login-hi88-step-by-step-registration__title {
    font-size: 2.5em;
  }

  .page-register-login-hi88-step-by-step-registration__subtitle {
    font-size: 1.2em;
  }

  .page-register-login-hi88-step-by-step-registration__heading {
    font-size: 2em;
  }

  .page-register-login-hi88-step-by-step-registration__step-title {
    font-size: 1.5em;
  }

  .page-register-login-hi88-step-by-step-registration__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-register-login-hi88-step-by-step-registration__title {
    font-size: 1.8em;
  }

  .page-register-login-hi88-step-by-step-registration__subtitle {
    font-size: 1em;
  }

  .page-register-login-hi88-step-by-step-registration__heading {
    font-size: 1.6em;
  }

  .page-register-login-hi88-step-by-step-registration__step-title {
    font-size: 1.3em;
  }

  .page-register-login-hi88-step-by-step-registration__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-register-login-hi88-step-by-step-registration__list,
  .page-register-login-hi88-step-by-step-registration__list--small {
    margin-left: 15px;
  }
}