.page-register {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

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

.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as per rules */
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
  padding-bottom: 40px;
}

.page-register__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-register__hero-content {
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  padding: 0 20px;
}

.page-register__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-register__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.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: 700;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

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

.page-register__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  color: #1F2D3D;
}

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

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

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

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

.page-register__benefit-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
  filter: none;
}

.page-register__benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-register__benefit-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1F2D3D;
}

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

.page-register__steps-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-register__steps-text {
  flex: 1;
  min-width: 300px;
}

.page-register__steps-image-wrapper {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-register__steps-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  filter: none;
}

.page-register__step-item {
  margin-bottom: 30px;
  position: relative;
  padding-left: 50px;
}

.page-register__step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.page-register__step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-register__step-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-register__cta-button--small {
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 0.95rem;
}

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

.page-register__faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-register__faq-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-register__faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000; /* Custom Color_1776249996415 */
}

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

.page-register__cta-bottom-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #2F6BFF 0%, #6FA3FF 100%);
  text-align: center;
}

.page-register__cta-bottom-content {
  max-width: 800px;
  color: #FFFFFF;
}

.page-register__cta-bottom-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-register__cta-bottom-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .page-register__hero-content {
    padding: 0 15px;
  }
  .page-register__steps-content {
    flex-direction: column;
  }
  .page-register__steps-text, .page-register__steps-image-wrapper {
    width: 100%;
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-register__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-register__hero-image-wrapper {
    border-radius: 0;
  }
  .page-register__hero-image {
    aspect-ratio: 4/3;
  }
  /* Ensure images in content area are responsive */
  .page-register__benefits-section img,
  .page-register__steps-section img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 549px) {
  .page-register__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-register__description {
    font-size: 1rem;
  }
  .page-register__cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  .page-register__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-register__benefit-card, .page-register__faq-item {
    padding: 20px;
  }
  .page-register__benefit-title, .page-register__faq-question {
    font-size: 1.1rem;
  }
  .page-register__step-title {
    font-size: 1.1rem;
  }
  .page-register__cta-bottom-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .page-register__cta-bottom-description {
    font-size: 1rem;
  }
}

/* Content area image CSS size lower bound check */
.page-register img {
  min-width: 200px; /* Enforce minimum width for content images */
  min-height: 200px; /* Enforce minimum height for content images */
}

.page-register__benefit-icon {
  max-width: 100%; /* Override specific max-width to ensure min-width applies */
}