/* style/index-registration-process.css */
.page-index-registration-process {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Explicitly set for content area if needed, but body is already white */
}

.page-index-registration-process__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #26A9E0; /* Brand primary color */
  color: #FFFFFF;
  text-align: center;
  min-height: 500px;
  overflow: hidden; /* For image */
}

.page-index-registration-process__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}

.page-index-registration-process__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

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

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

.page-index-registration-process__btn-primary,
.page-index-registration-process__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-registration-process__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

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

.page-index-registration-process__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0; /* Brand primary color */
  border: 2px solid #26A9E0;
}

.page-index-registration-process__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1e87b7;
  border-color: #1e87b7;
}

.page-index-registration-process__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  z-index: 1;
}

.page-index-registration-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.page-index-registration-process__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-index-registration-process__why-register-section,
.page-index-registration-process__steps-section,
.page-index-registration-process__tips-section,
.page-index-registration-process__faq-section,
.page-index-registration-process__cta-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-index-registration-process__why-register-section {
  background-color: #f8f8f8;
}

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