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

/* Base styles for the page content, ensuring light text on dark body background */
.page-index-register-process {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-index-register-process__section {
  padding: 60px 0;
}

.page-index-register-process__section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand primary color for titles */
  line-height: 1.2;
}

.page-index-register-process__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
}

/* Color contrast specific styles */
.page-index-register-process__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter than body background for section contrast */
  color: #ffffff;
}

.page-index-register-process__light-bg {
  background-color: #282828; /* Dark grey for sections, still light text */
  color: #ffffff;
}

/* Hero Section */
.page-index-register-process__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.page-index-register-process__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
}

.page-index-register-process__hero-content {
  position: relative; /* Ensure content is above image if any layering occurs */
  z-index: 1;
  max-width: 900px;
  margin-top: 40px; /* Separates content from image */
  padding: 0 20px;
}

.page-index-register-process__hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
}

.page-index-register-process__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-register-process__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-index-register-process__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

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

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

/* Why Register Section */
.page-index-register-process__why-register .page-index-register-process__section-title,
.page-index-register-process__why-register .page-index-register-process__section-description {
  color: #ffffff;
}

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

.page-index-register-process__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.page-index-register-process__feature-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
}

.page-index-register-process__feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-index-register-process__feature-text {
  font-size: 16px;
  color: #e0e0e0;
  flex-grow: 1;
}

/* Registration Guide Section */
.page-index-register-process__registration-guide .page-index-register-process__section-title,
.page-index-register-process__registration-guide .page-index-register-process__section-description {
  color: #ffffff;
}

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

.page-index-register-process__step-item {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.page-index-register-process__step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-index-register-process__step-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
}

.page-index-register-process__step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-index-register-process__step-text {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Important Notes Section */
.page-index-register-process__important-notes .page-index-register-process__section-title,
.page-index-register-process__important-notes .page-index-register-process__section-description {
  color: #ffffff;
}

.page-index-register-process__notes-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 900px;
}

.page-index-register-process__note-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-index-register-process__note-title {
  font-size: 20px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-index-register-process__note-text {
  font-size: 16px;
  color: #e0e0e0;
}

/* FAQ Section */
.page-index-register-process__faq-section .page-index-register-process__section-title,
.page-index-register-process__faq-section .page-index-register-process__section-description {
  color: #ffffff;
}

.page-index-register-process__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-index-register-process__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index-register-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

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

.page-index-register-process__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-index-register-process__faq-item[open] .page-index-register-process__faq-question {
  border-bottom: 1px solid transparent;
}

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

.page-index-register-process__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  color: #e0e0e0;
}

/* Final CTA Section */
.page-index-register-process__cta-final .page-index-register-process__section-title,
.page-index-register-process__cta-final .page-index-register-process__section-description {
  color: #ffffff;
}

.page-index-register-process__cta-final .page-index-register-process__cta-buttons {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-register-process__hero-title {
    font-size: clamp(30px, 4.5vw, 48px);
  }

  .page-index-register-process__hero-description {
    font-size: clamp(16px, 2.2vw, 20px);
  }
}

@media (max-width: 768px) {
  .page-index-register-process__section {
    padding: 40px 0;
  }

  .page-index-register-process__section-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .page-index-register-process__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

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

  .page-index-register-process__hero-image {
    max-height: 400px;
  }

  .page-index-register-process__hero-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .page-index-register-process__hero-description {
    font-size: 16px;
  }

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

  .page-index-register-process__hero-cta-buttons,
  .page-index-register-process__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-index-register-process__features-grid,
  .page-index-register-process__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-register-process__feature-item,
  .page-index-register-process__step-item {
    padding: 25px;
  }

  .page-index-register-process__feature-image,
  .page-index-register-process__step-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-index-register-process__notes-list,
  .page-index-register-process__faq-list {
    margin-top: 30px;
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-index-register-process__note-item,
  .page-index-register-process__faq-item {
    margin-bottom: 10px;
  }

  .page-index-register-process__faq-question {
    padding: 15px;
    font-size: 16px;
  }

  .page-index-register-process__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 15px;
  }

  /* Ensure all content containers are responsive */
  .page-index-register-process__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-index-register-process img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-index-register-process video,
  .page-index-register-process__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-index-register-process__video-section,
  .page-index-register-process__video-container,
  .page-index-register-process__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-index-register-process__hero-title {
    font-size: clamp(24px, 8vw, 36px);
  }

  .page-index-register-process__section-title {
    font-size: clamp(22px, 7vw, 28px);
  }
}