.page-register {
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for first section */
}

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

.page-register__hero-section {
  position: relative;
  text-align: center;
  background-color: #017439; /* Primary color as fallback */
  padding-bottom: 40px;
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.page-register__hero-content {
  padding: 20px;
  background-color: #017439;
  color: #FFFFFF;
}

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

.page-register__hero-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto;
}

.page-register__section-title {
  font-size: 2.2em;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-register__form-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.page-register__form {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__form-group {
  margin-bottom: 20px;
}

.page-register__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333333;
}

.page-register__form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

.page-register__checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.page-register__checkbox {
  margin-right: 10px;
  margin-top: 4px;
  transform: scale(1.2);
}

.page-register__checkbox-label {
  font-size: 0.95em;
  color: #555555;
}

.page-register__link {
  color: #017439;
  text-decoration: none;
  font-weight: bold;
}

.page-register__link:hover {
  text-decoration: underline;
}

.page-register__submit-button {
  width: 100%;
  padding: 15px 20px;
  background-color: #C30808; /* Custom Register color */
  color: #FFFF00; /* Custom Register Font color */
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-register__submit-button:hover {
  background-color: #a30606;
}

.page-register__login-prompt {
  text-align: center;
  margin-top: 25px;
  font-size: 0.95em;
  color: #555555;
}

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

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

.page-register__benefit-item {
  padding: 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-register__benefit-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
  object-fit: cover;
}

.page-register__benefit-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-register__benefit-description {
  font-size: 1em;
  color: #666666;
}

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

.page-register__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-register__hero-image {
    aspect-ratio: 4/3;
  }
  .page-register__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-register__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-register__benefit-icon {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all content images are responsive and not smaller than 200px display */
  .page-register img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Apply min-width to all images within page-register */
    min-height: 200px;
  }
  .page-register__form {
    padding: 20px;
  }
  .page-register__benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 549px) {
  .page-register__main-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }
  .page-register__hero-description {
    font-size: 0.95em;
  }
  .page-register__section-title {
    font-size: 1.5em;
  }
  .page-register__form-input, .page-register__submit-button {
    font-size: 0.95em;
    padding: 10px;
  }
  .page-register__checkbox-label {
    font-size: 0.9em;
  }
  .page-register__benefit-title {
    font-size: 1.2em;
  }
  .page-register__faq-question {
    font-size: 1.1em;
  }
  .page-register__container {
    padding: 15px;
  }
}