/* style/index-registration-process.css */

/* Body background is #000000 (dark), so main text must be light */
.page-index-registration-process {
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-index-registration-process__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(135deg, #26A9E0, #000000);
  overflow: hidden;
  text-align: center;
}

.page-index-registration-process__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-index-registration-process__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-index-registration-process__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  color: #ffffff;
}

.page-index-registration-process__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-registration-process__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-registration-process__btn-primary {
  display: inline-block;
  background: #26A9E0; /* Brand primary color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-registration-process__btn-primary:hover {
  background-color: #1a8cc7;
  transform: translateY(-2px);
}

.page-index-registration-process__btn-secondary {
  display: inline-block;
  background: #ffffff;
  color: #26A9E0; /* Brand primary color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #26A9E0;
  cursor: pointer;
}

.page-index-registration-process__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-index-registration-process__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #000000; /* Content area background matches body */
  color: #ffffff; /* Light text for content area */
}

.page-index-registration-process__section-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #26A9E0; /* Brand primary color for titles */
  text-align: center;
}

.page-index-registration-process__paragraph {
  font-size: 1.05em;
  margin-bottom: 1.5em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-index-registration-process__image-with-text {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.page-index-registration-process__image-with-text--reverse {
  flex-direction: row-reverse;
}

.page-index-registration-process__image-with-text .page-index-registration-process__image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: auto;
  display: block;
}

.page-index-registration-process__image-with-text .page-index-registration-process__text-block {
  flex: 1;
  max-width: 50%;
}

.page-index-registration-process__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 2em;
  color: #f0f0f0;
}

.page-index-registration-process__list-item {
  margin-bottom: 0.8em;
  color: #f0f0f0;
}

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

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

.page-index-registration-process__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background */
  color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-index-registration-process__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-registration-process__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-index-registration-process__card-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

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

.page-index-registration-process__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000000;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  width: 100%; /* Desktop width: 100% */
  max-width: 1000px; /* Max width for video */
}

.page-index-registration-process__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
}

.page-index-registration-process__video-caption {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: #f0f0f0;
}

.page-index-registration-process__faq-list {
  margin-top: 30px;
  margin-bottom: 60px;
}

.page-index-registration-process__faq-item {
  background: rgba(255, 255, 255, 0.08); /* Slightly darker transparent background */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-registration-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-index-registration-process__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-index-registration-process__faq-item[open] .page-index-registration-process__faq-question {
  background-color: #26A9E0; /* Brand color when open */
}

.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: #ffffff;
}

.page-index-registration-process__faq-item[open] .page-index-registration-process__faq-toggle {
  color: #ffffff;
}

.page-index-registration-process__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95em;
  line-height: 1.7;
  color: #f0f0f0;
  background: rgba(255, 255, 255, 0.03);
}

.page-index-registration-process__cta-final {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-registration-process__btn-primary--large,
.page-index-registration-process__btn-secondary--large {
  padding: 18px 35px;
  font-size: 1.1em;
  margin: 10px;
}

/* Ensure details summary marker is hidden */
.page-index-registration-process__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-index-registration-process__faq-item summary::marker {
  display: none;
}

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

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

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

  .page-index-registration-process__image-with-text {
    flex-direction: column;
  }

  .page-index-registration-process__image-with-text .page-index-registration-process__image,
  .page-index-registration-process__image-with-text .page-index-registration-process__text-block {
    max-width: 100%;
  }

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

  .page-index-registration-process__benefits-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

  .page-index-registration-process__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-registration-process__content-area {
    padding: 20px 15px;
  }

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

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

  .page-index-registration-process__section,
  .page-index-registration-process__card,
  .page-index-registration-process__container,
  .page-index-registration-process__image-with-text,
  .page-index-registration-process__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }

  /* Video responsive */
  .page-index-registration-process video,
  .page-index-registration-process__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-index-registration-process__video-section,
  .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__video-section {
    padding-top: 10px !important; /* Small top padding for video section */
  }

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

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

  .page-index-registration-process__btn-primary--large,
  .page-index-registration-process__btn-secondary--large {
    font-size: 1em;
    padding: 15px 25px;
  }
}

/* Ensure content area images are at least 200px wide */
.page-index-registration-process__content-area img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Special styles for login button */
.page-index-registration-process__btn-login {
  background: #EA7C07;
  color: #FFFFFF;
  border: none;
}

.page-index-registration-process__btn-login:hover {
  background: #cc6d06;
}

/* Ensure no filter on images */
.page-index-registration-process img {
  filter: none !important;
}