.page-register {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
  font-family: Arial, sans-serif; /* Example font */
  line-height: 1.6;
}

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

/* Hero Section */
.page-register__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #2F6BFF; /* Primary color as fallback */
  padding-bottom: 20px; /* Small padding after hero content */
}

.page-register__hero-image-wrapper {
  margin-bottom: 20px; /* Space between image and content */
}

.page-register__hero-image {
  display: block;
  width: 100%;
  height: auto; /* Ensure responsiveness */
  object-fit: cover;
  min-height: 200px; /* Minimum size */
  min-width: 200px; /* Minimum size */
}

.page-register__hero-content {
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-register__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive H1 font size */
  color: #000000; /* Custom Color_1776249996415 */
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-register__description {
  font-size: 1.1em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-register__button--large {
  padding: 15px 40px;
  font-size: 1.2em;
}

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

/* Registration Steps Section */
.page-register__registration-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Card BG */
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-register__step-item {
  text-align: center;
  padding: 25px;
  background-color: #F4F7FB; /* Background */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-register__step-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2F6BFF; /* Primary color */
  color: #FFFFFF;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 0 5px #A5C4FF; /* Glow */
}

.page-register__step-heading {
  font-size: 1.4em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-register__step-text {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
}

.page-register__registration-image {
  display: block;
  margin: 40px auto 0 auto;
  width: 100%;
  max-width: 800px; /* Limit max width */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Min size */
  min-height: 200px; /* Min size */
}


/* Security Section */
.page-register__security-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
  margin-bottom: 30px;
}

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

.page-register__security-item {
  background-color: #FFFFFF; /* Card BG */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
}

.page-register__security-heading {
  font-size: 1.3em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

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

.page-register__security-image {
  display: block;
  margin: 40px auto 0 auto;
  width: 100%;
  max-width: 800px; /* Limit max width */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Min size */
  min-height: 200px; /* Min size */
}

/* FAQ Section */
.page-register__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Card BG */
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-register__faq-item {
  border-bottom: 1px solid #D6E2FF; /* Border */
  padding: 20px 0;
}

.page-register__faq-item:last-child {
  border-bottom: none;
}

.page-register__faq-question {
  font-size: 1.15em;
  color: #000000; /* Custom Color_1776249996415 */
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer; /* Indicate it's interactive */
}

.page-register__faq-answer {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
  display: none; /* Hidden by default, toggled by JS */
  padding-left: 10px;
}

/* CTA Section */
.page-register__cta-section {
  padding: 60px 0;
  text-align: center;
  background-color: #2F6BFF; /* Primary color */
  color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-register__cta-section .page-register__section-title {
  color: #FFFFFF;
}

.page-register__cta-section .page-register__description {
  color: #FFFFFF;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-register__container {
    padding: 15px;
  }

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

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

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

  .page-register__button {
    padding: 10px 25px;
    font-size: 0.95em;
  }

  .page-register__button--large {
    padding: 12px 30px;
    font-size: 1.1em;
  }

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

  .page-register__registration-image,
  .page-register__security-image {
    max-width: 100%;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }

  /* Mobile content image constraint */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure no images below 200px in content area */
.page-register img {
  min-width: 200px;
  min-height: 200px;
}