.page-register {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 20px; /* Add some padding at the bottom for overall page */
}

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

.page-register__hero-section {
  position: relative;
  background-color: #2F6BFF;
  display: flex;
  flex-direction: column; /* Ensure image is above content */
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  margin-bottom: 40px;
}

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

.page-register__hero-content {
  text-align: center;
  padding: 40px 20px;
  background-color: #FFFFFF; /* White background for content to ensure contrast */
  max-width: 800px;
  margin-top: -80px; /* Overlap slightly with the image for visual effect */
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1; /* Ensure content is above the image if any overlap */
}

.page-register__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000000; /* Custom Color_1776249996415 */
  max-width: 100%; /* Ensure it doesn't overflow */
}

.page-register__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #1F2D3D;
}

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

.page-register__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-register__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em); /* Responsive font size */
  color: #2F6BFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

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

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

.page-register__step-card:hover {
  transform: translateY(-5px);
}

.page-register__step-icon-wrapper {
  margin-bottom: 20px;
}

.page-register__step-icon {
  width: 200px; /* Enforce min size 200x200 */
  height: 200px;
  object-fit: contain;
}

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

.page-register__step-description {
  font-size: 1em;
  color: #1F2D3D;
}

.page-register__cta-button--bottom {
  margin-top: 20px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-register__why-join-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-register__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-register__feature-card {
  background-color: #F4F7FB;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-register__feature-title {
  font-size: 1.3em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-register__feature-description {
  font-size: 0.95em;
  color: #1F2D3D;
}

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

.page-register__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-register__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 20px;
}

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

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

.page-register__floating-cta-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px; /* Ensure floating button is also not too small */
}

.page-register__floating-cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-register__hero-content {
    margin-top: -40px; /* Less overlap on mobile */
    padding: 25px 15px;
  }

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

  .page-register__hero-description {
    font-size: 1em;
  }

  .page-register__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

  .page-register__steps-grid, .page-register__features-grid {
    grid-template-columns: 1fr; /* Single column layout on small screens */
  }

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

  .page-register__floating-cta-button {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px;
    font-size: 1em;
    min-width: unset; /* Allow it to shrink if needed on very small screens */
  }

  /* Enforce image max-width for content area images */
  .page-register img {
    max-width: 100%;
    height: auto; /* Ensure aspect ratio is maintained */
  }
}

@media (max-width: 480px) {
  .page-register__hero-content {
    margin-top: -20px;
  }
  .page-register__cta-button {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-register__step-icon {
    width: 200px; /* Maintain minimum 200px */
    height: 200px;
  }
  .page-register__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
}

/* Specific rule for content area images to prevent display smaller than 200px */
.page-register img:not(.page-register__hero-image) {
  width: auto;
  height: auto;
  max-width: 100%;
  min-width: 200px; /* Enforce min width */
  min-height: 200px; /* Enforce min height */
  object-fit: contain; /* Ensure image fits without cropping if it's smaller */
}

/* Override for hero image to allow it to be larger than 200x200 if needed */
.page-register__hero-image {
  min-width: unset;
  min-height: unset;
}