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

.page-index-registration-process__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-index-registration-process__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-registration-process__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay to ensure text readability */
}

.page-index-registration-process__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card B G with transparency */
  border-radius: 10px;
}

.page-index-registration-process__main-title {
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  /* No fixed font-size, rely on responsive scaling */
}

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

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

.page-index-registration-process__cta-buttons--center {
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-index-registration-process__btn-primary,
.page-index-registration-process__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
}

.page-index-registration-process__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
}

.page-index-registration-process__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-index-registration-process__btn-secondary {
  background: #11271B; /* Card B G */
  color: #2AD16F;
  border: 2px solid #2E7A4E; /* Border */
}

.page-index-registration-process__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

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

.page-index-registration-process__section-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #F2FFF6; /* Text Main */
  line-height: 1.3;
}

.page-index-registration-process__section-title--light {
  color: #F2FFF6; /* Text Main */
}

.page-index-registration-process__section-paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
  color: #A7D9B8; /* Text Secondary */
}

.page-index-registration-process__section-paragraph--light {
  color: #A7D9B8; /* Text Secondary */
}

.page-index-registration-process__text-link {
  color: #57E38D; /* Glow */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-index-registration-process__text-link:hover {
  color: #F2C14E; /* Gold */
}

.page-index-registration-process__text-link--light {
  color: #57E38D; /* Glow */
}

.page-index-registration-process__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-index-registration-process__image-wrapper--inline {
  display: block;
  margin: 40px auto;
}

.page-index-registration-process__image {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* Ensure responsiveness */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove extra space below image */
  margin: 0 auto;
}

.page-index-registration-process__step-card {
  background-color: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-registration-process__step-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  text-align: center;
}

.page-index-registration-process__step-description {
  font-size: 1.0em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  text-align: justify;
}

.page-index-registration-process__step-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-index-registration-process__step-list li {
  margin-bottom: 10px;
}

.page-index-registration-process__feature-list,
.page-index-registration-process__promotion-list,
.page-index-registration-process__issue-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-registration-process__feature-list li,
.page-index-registration-process__promotion-list li,
.page-index-registration-process__issue-list li {
  background-color: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #2AD16F; /* Button highlight */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.page-index-registration-process__feature-list li strong,
.page-index-registration-process__promotion-list li strong,
.page-index-registration-process__issue-list li strong {
  color: #F2C14E; /* Gold */
}

.page-index-registration-process__feature-list--light li,
.page-index-registration-process__promotion-list--light li,
.page-index-registration-process__issue-list--light li {
  background-color: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
}

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

.page-index-registration-process__faq-item {
  background-color: #11271B; /* Card B G */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.page-index-registration-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #1E3A2A; /* Divider */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 1px solid #2E7A4E; /* Border */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-index-registration-process__faq-question:hover {
  background-color: #2E7A4E; /* Border */
}

.page-index-registration-process__faq-item[open] > .page-index-registration-process__faq-question {
  background-color: #2E7A4E; /* Border */
}

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

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

.page-index-registration-process__faq-item[open] .page-index-registration-process__faq-toggle {
  content: '−';
}

.page-index-registration-process__faq-answer {
  padding: 15px 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  line-height: 1.6;
  background-color: #11271B; /* Card B G */
}

.page-index-registration-process__faq-answer p {
  margin-bottom: 10px;
}

.page-index-registration-process__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #0A4B2C; /* Deep Green */
  border-top: 2px solid #2E7A4E; /* Border */
}

/* Color contrast adjustments for specific sections */
.page-index-registration-process__dark-section {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-index-registration-process__light-bg {
  background-color: #0A4B2C; /* Deep Green, slightly lighter than main bg for contrast */
  color: #F2FFF6; /* Text Main */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-registration-process__main-title {
    font-size: 2.5em;
  }

  .page-index-registration-process__section-title {
    font-size: 2em;
  }
}

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

  .page-index-registration-process__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-index-registration-process__hero-content {
    padding: 15px;
  }

  .page-index-registration-process__main-title {
    font-size: 1.8em; /* Adjusted for mobile */
  }

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

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

  .page-index-registration-process__btn-primary,
  .page-index-registration-process__btn-secondary,
  .page-index-registration-process a[class*="button"],
  .page-index-registration-process a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-registration-process__content-area,
  .page-index-registration-process__step-card,
  .page-index-registration-process__faq-item,
  .page-index-registration-process__cta-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-index-registration-process__section-title {
    font-size: 1.6em;
  }

  .page-index-registration-process__step-title {
    font-size: 1.4em;
  }

  /* Images and video responsiveness for mobile */
  .page-index-registration-process img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-index-registration-process__image-wrapper,
  .page-index-registration-process__video-container,
  .page-index-registration-process__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

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

  .page-index-registration-process__faq-answer {
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-index-registration-process__main-title {
    font-size: 1.5em;
  }

  .page-index-registration-process__section-title {
    font-size: 1.4em;
  }

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