/* style/index-registration-process.css */
.page-index-registration-process {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #000000; /* Ensure main content area respects body background */
}

.page-index-registration-process__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  background-color: #000000; /* Ensure hero section is dark */
  color: #ffffff;
}

.page-index-registration-process__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-index-registration-process__hero-content {
  max-width: 900px;
  margin-top: 30px;
  z-index: 1; /* Ensure content is above image if any overlap */
}

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

.page-index-registration-process__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-registration-process__content-section {
  padding: 60px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background for contrast with hero */
  color: #f0f0f0;
}

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

.page-index-registration-process__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-index-registration-process__sub-title {
  font-size: 1.6em;
  color: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-registration-process__text-block p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-index-registration-process__text-block ul {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
  color: #f0f0f0;
}

.page-index-registration-process__text-block li {
  margin-bottom: 8px;
  color: #f0f0f0;
}

.page-index-registration-process__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-registration-process__btn-primary,
.page-index-registration-process__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-index-registration-process__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
  margin: 10px;
}

.page-index-registration-process__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-index-registration-process__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin: 10px;
}

.page-index-registration-process__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

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

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

.page-index-registration-process__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-index-registration-process__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15em;
  color: #FFFFFF;
  list-style: none; /* Remove default marker */
}

.page-index-registration-process__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit browsers */
}

.page-index-registration-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-index-registration-process__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-index-registration-process__faq-item[open] .page-index-registration-process__faq-toggle {
  transform: rotate(45deg);
}

.page-index-registration-process__faq-answer {
  padding-top: 15px;
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
}

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

.highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-registration-process__hero-section {
    padding: 40px 15px;
  }

  .page-index-registration-process__main-title {
    font-size: 2.5em;
  }

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

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

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

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

  .page-index-registration-process__main-title {
    font-size: 2em !important;
    line-height: 1.3 !important;
  }

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

  .page-index-registration-process__section-title {
    font-size: 1.6em !important;
    margin-bottom: 20px !important;
  }

  .page-index-registration-process__sub-title {
    font-size: 1.2em !important;
    margin-top: 30px !important;
    margin-bottom: 15px !important;
  }

  .page-index-registration-process__content-section {
    padding: 30px 15px !important;
  }

  .page-index-registration-process__text-block p,
  .page-index-registration-process__text-block li {
    font-size: 0.95em !important;
  }

  /* Images responsive */
  .page-index-registration-process img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Image containers responsive */
  .page-index-registration-process__hero-image-wrapper,
  .page-index-registration-process__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Buttons responsive */
  .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;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  /* Button containers responsive */
  .page-index-registration-process__cta-buttons,
  .page-index-registration-process__button-group,
  .page-index-registration-process__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px !important;
  }

  .page-index-registration-process__faq-item {
    padding: 15px !important;
  }

  .page-index-registration-process__faq-item summary {
    font-size: 1em !important;
  }

  .page-index-registration-process__faq-answer {
    padding-top: 10px !important;
  }
}

/* Dark background with light text for cards/sections */
.page-index-registration-process__dark-bg {
  color: #ffffff;
  background: #000000;
}

/* Light background (not used in this dark theme, but kept for completeness) */
.page-index-registration-process__light-bg {
  color: #f0f0f0; /* Adjusted to light text for dark theme */
  background: #0d0d0d; /* Adjusted to dark theme compatible background */
}

/* Medium background (not used in this dark theme, but kept for completeness) */
.page-index-registration-process__medium-bg {
  color: #f0f0f0; /* Adjusted to light text for dark theme */
  background: #1a1a1a; /* Adjusted to dark theme compatible background */
}

.page-index-registration-process__card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark theme */
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}