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

.page-register__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
}

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

.page-register__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust this value to bring content closer to the image, without overlapping */
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-register__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #000000; /* Custom Color_1776249996415 */
  max-width: 100%;
}

.page-register__intro-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #1F2D3D; /* Text Main */
}

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

.page-register__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

.page-register__form-section {
  padding: 60px 20px;
  background-color: #F4F7FB;
}

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

.page-register__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-register__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D; /* Text Main */
}

.page-register__registration-form {
  background-color: #FFFFFF; /* Card BG */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
}

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

.page-register__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
}

.page-register__form-input {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
  transition: border-color 0.3s ease;
}

.page-register__form-input::placeholder {
  color: #A0AEC0;
}

.page-register__form-input:focus {
  border-color: #2F6BFF; /* Main Color */
  outline: none;
}

.page-register__checkbox-group {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-register__form-checkbox {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  accent-color: #2F6BFF; /* Main Color */
}

.page-register__checkbox-label {
  font-size: 0.95em;
  color: #1F2D3D; /* Text Main */
}

.page-register__terms-link {
  color: #2F6BFF; /* Main Color */
  text-decoration: none;
  font-weight: 600;
}

.page-register__terms-link:hover {
  text-decoration: underline;
}

.page-register__submit-button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-register__submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

.page-register__benefits-section {
  padding: 60px 20px;
  background-color: #F4F7FB;
}

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

.page-register__benefit-card {
  background-color: #FFFFFF; /* Card BG */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-register__benefit-icon {
  width: 100%; /* Ensure image fills card area */
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 10px;
  object-fit: cover;
}

.page-register__benefit-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-register__benefit-description {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
}

.page-register__cta-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  text-align: center;
  color: #FFFFFF;
  border-radius: 0;
}

.page-register__cta-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-register__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-register__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background: #FFFFFF;
  color: #2F6BFF; /* Main Color */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-register__cta-button--large:hover {
  background: #E0EFFF;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .page-register__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding-top: 0;
  }
  .page-register__hero-image {
    max-height: 300px;
  }
  .page-register__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
    border-radius: 10px;
  }
  .page-register__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em); /* Using clamp for responsive font size */
    margin-bottom: 15px;
  }
  .page-register__intro-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-register__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-register__form-section, .page-register__benefits-section, .page-register__cta-section {
    padding: 40px 15px;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-register__registration-form {
    padding: 30px;
  }
  .page-register__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-register__benefit-icon {
    max-width: 200px; /* Ensure images are not too small */
    width: 100%;
    height: auto;
  }
  .page-register__cta-title {
    font-size: 2em;
  }
  .page-register__cta-text {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  .page-register__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Mobile content area image overflow prevention */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}