.page-register {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 40px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-register__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-register__hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-register__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-register__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%);
}

.page-register__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #000000;
}

.page-register__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #1F2D3D;
}

.page-register__steps-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-register__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-register__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-register__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-register__step-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Example max-width for content images */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-register__step-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000000;
}

.page-register__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-register__cta-button--bottom {
  margin-top: 20px;
}

.page-register__security-section {
  padding: 60px 0;
  background-color: #E6EEF9;
}

.page-register__security-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-register__security-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #D6E2FF;
}

.page-register__security-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-register__security-item-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.page-register__security-item-text {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-register__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-register__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-register__faq-question {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2F6BFF;
}

.page-register__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding-bottom: 30px;
  }

  .page-register__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-register__description {
    font-size: 1em;
  }

  .page-register__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-register__section-title {
    font-size: clamp(1.8em, 7vw, 2.2em);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-register__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-register__steps-grid,
  .page-register__security-list {
    grid-template-columns: 1fr;
  }

  .page-register__step-card,
  .page-register__security-item,
  .page-register__faq-item {
    padding: 20px;
  }

  .page-register__step-title {
    font-size: 1.5em;
  }

  .page-register__security-item-title {
    font-size: 1.3em;
  }

  .page-register__faq-question {
    font-size: 1.1em;
  }

  .page-register__container img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all content images within .page-register are responsive */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}