.page-index-u888-registration-process {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-index-u888-registration-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-u888-registration-process__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  background-color: #0A4B2C; /* Deep Green for hero section background */
  overflow: hidden;
}

.page-index-u888-registration-process__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-u888-registration-process__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-index-u888-registration-process__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Pull content slightly over the image for visual flow */
  position: relative;
  z-index: 1;
  background-color: #0A4B2C; /* Ensure background for text for contrast */
  padding-top: 100px; /* compensate for negative margin */
  border-radius: 8px;
}

.page-index-u888-registration-process__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Use clamp for responsive H1 */
  font-weight: 700;
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-u888-registration-process__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
}

.page-index-u888-registration-process__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-u888-registration-process__btn-primary,
.page-index-u888-registration-process__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-index-u888-registration-process__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-index-u888-registration-process__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-index-u888-registration-process__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Glow color */
  border: 2px solid #57E38D;
}

.page-index-u888-registration-process__btn-secondary:hover {
  background-color: #57E38D;
  color: #08160F; /* Dark background color */
  transform: translateY(-2px);
}

.page-index-u888-registration-process__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2C14E; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-index-u888-registration-process p {
  margin-bottom: 1em;
  color: #F2FFF6;
}

.page-index-u888-registration-process__introduction-section,
.page-index-u888-registration-process__steps-section,
.page-index-u888-registration-process__troubleshooting-section,
.page-index-u888-registration-process__faq-section,
.page-index-u888-registration-process__final-cta {
  padding: 60px 0;
}

.page-index-u888-registration-process__dark-section {
  background-color: #11271B; /* Card BG color */
  padding: 60px 0;
}

.page-index-u888-registration-process__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-u888-registration-process__step-card {
  background-color: #11271B; /* Card BG color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-index-u888-registration-process__step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: 700;
  margin: 0 auto 20px;
}

.page-index-u888-registration-process__step-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-index-u888-registration-process__step-image,
.page-index-u888-registration-process__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-index-u888-registration-process__note-block {
  background-color: #0A4B2C; /* Deep Green */
  border-left: 5px solid #F2C14E; /* Gold accent */
  padding: 25px;
  margin-top: 50px;
  border-radius: 8px;
  color: #F2FFF6;
}

.page-index-u888-registration-process__note-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-index-u888-registration-process__list,
.page-index-u888-registration-process__ordered-list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 1em;
  color: #F2FFF6;
}

.page-index-u888-registration-process__ordered-list {
  list-style: decimal;
}

.page-index-u888-registration-process__list li,
.page-index-u888-registration-process__ordered-list li {
  margin-bottom: 8px;
  color: #F2FFF6;
}

.page-index-u888-registration-process__verification-details,
.page-index-u888-registration-process__security-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-u888-registration-process__item-title {
  font-size: 1.3em;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-index-u888-registration-process__issue-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-u888-registration-process__issue-card {
  background-color: #11271B;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-index-u888-registration-process__card-title {
  font-size: 1.4em;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-index-u888-registration-process__contact-support {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #0A4B2C;
  border-radius: 12px;
  border: 1px solid #2E7A4E;
}

.page-index-u888-registration-process__contact-title {
  font-size: 1.6em;
  color: #F2C14E;
  margin-bottom: 20px;
}

.page-index-u888-registration-process__faq-list {
  margin-top: 40px;
}

.page-index-u888-registration-process__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index-u888-registration-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green for summary background */
  transition: background-color 0.3s ease;
}

.page-index-u888-registration-process__faq-question:hover {
  background-color: #1E3A2A;
}

.page-index-u888-registration-process__faq-item[open] .page-index-u888-registration-process__faq-question {
  background-color: #1E3A2A;
}

.page-index-u888-registration-process__faq-qtext {
  flex-grow: 1;
}

.page-index-u888-registration-process__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D;
}

.page-index-u888-registration-process__faq-item[open] .page-index-u888-registration-process__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-index-u888-registration-process__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05em;
  color: #A7D9B8;
  background-color: #11271B;
}

.page-index-u888-registration-process__faq-answer p {
  margin-bottom: 0;
}

/* Hide default details marker */
.page-index-u888-registration-process__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-index-u888-registration-process__faq-item summary {
  list-style: none;
}

.page-index-u888-registration-process__final-cta {
  text-align: center;
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-index-u888-registration-process__btn-large {
  font-size: 1.2em;
  padding: 18px 35px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-index-u888-registration-process__hero-content {
    margin-top: -60px;
    padding-top: 80px;
  }
}

@media (max-width: 768px) {
  .page-index-u888-registration-process__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-index-u888-registration-process__hero-section {
    padding-bottom: 40px;
  }

  .page-index-u888-registration-process__hero-content {
    margin-top: -40px;
    padding: 30px 15px;
    padding-top: 60px;
  }

  .page-index-u888-registration-process__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-index-u888-registration-process__hero-description {
    font-size: 1em;
  }

  .page-index-u888-registration-process__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .page-index-u888-registration-process__btn-primary,
  .page-index-u888-registration-process__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-index-u888-registration-process__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-index-u888-registration-process__introduction-section,
  .page-index-u888-registration-process__steps-section,
  .page-index-u888-registration-process__troubleshooting-section,
  .page-index-u888-registration-process__faq-section,
  .page-index-u888-registration-process__final-cta,
  .page-index-u888-registration-process__dark-section {
    padding: 40px 0;
  }

  .page-index-u888-registration-process__step-card,
  .page-index-u888-registration-process__issue-card {
    padding: 20px;
  }

  .page-index-u888-registration-process__step-image,
  .page-index-u888-registration-process__content-image {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
    width: 100% !important; /* Ensure image takes full container width */
  }

  .page-index-u888-registration-process img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-index-u888-registration-process__section,
  .page-index-u888-registration-process__card,
  .page-index-u888-registration-process__container,
  .page-index-u888-registration-process__hero-image-wrapper,
  .page-index-u888-registration-process__step-by-step,
  .page-index-u888-registration-process__verification-details,
  .page-index-u888-registration-process__security-content,
  .page-index-u888-registration-process__issue-cards,
  .page-index-u888-registration-process__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-index-u888-registration-process__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-index-u888-registration-process__faq-answer {
    padding: 10px 20px 15px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index-u888-registration-process__hero-content {
    padding: 20px 10px;
    padding-top: 50px;
  }

  .page-index-u888-registration-process__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

  .page-index-u888-registration-process__section-title {
    font-size: clamp(1.3em, 7vw, 1.8em);
  }

  .page-index-u888-registration-process__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5em;
  }

  .page-index-u888-registration-process__step-title,
  .page-index-u888-registration-process__card-title {
    font-size: 1.2em;
  }
}