.page-register {
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #FFFFFF;
  color: #000000;
  font-family: Arial, sans-serif;
}

.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 20px;
}

.page-register__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.page-register__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9; /* For hero image, maintain aspect ratio */
  object-fit: cover;
  border-radius: 12px;
}

.page-register__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #26A9E0;
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-register__cta-button--primary {
  background-color: #EA7C07;
  color: #FFFFFF;
}

.page-register__cta-button--primary:hover {
  background-color: #d46c06;
}

.page-register__cta-button--secondary {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-register__cta-button--secondary:hover {
  background-color: #1e87bb;
}

.page-register__section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: #26A9E0;
  text-align: center;
  margin: 40px auto 30px auto;
  padding: 0 20px;
  max-width: 800px;
}

.page-register__steps-section,
.page-register__security-section,
.page-register__faq-section {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 15px 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 {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-register__step-icon {
  background-color: #26A9E0;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-register__step-title {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 10px;
}

.page-register__step-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
}

.page-register__step-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

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

.page-register__security-image {
  flex: 1 1 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-register__security-list {
  flex: 2 1 400px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-register__security-item {
  background-color: #FFFFFF;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-left: 5px solid #26A9E0;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.02);
}

.page-register__faq-list {
  margin-top: 20px;
}

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

.page-register__faq-question {
  font-size: 1.2rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

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

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

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

.page-register__more-info {
  text-align: center;
  margin-top: 30px;
  font-size: 1rem;
  color: #555555;
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 15px;
    margin-bottom: 30px;
  }

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

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

  .page-register__cta-button {
    width: 100%;
    padding: 12px 20px;
    min-width: unset;
  }

  .page-register__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin: 30px auto 20px auto;
  }

  .page-register__steps-section,
  .page-register__security-section,
  .page-register__faq-section {
    padding: 15px;
    margin-bottom: 40px;
  }

  .page-register__steps-grid {
    gap: 20px;
  }

  .page-register__step-item {
    padding: 20px;
  }

  .page-register__security-content {
    flex-direction: column;
    gap: 20px;
  }

  .page-register__security-image {
    width: 100%;
    min-width: 200px;
    min-height: 200px;
  }

  .page-register__security-item {
    padding: 12px 15px;
  }

  .page-register__faq-question {
    font-size: 1.1rem;
  }

  .page-register__faq-answer {
    font-size: 0.95rem;
  }

  .page-register__hero-image-wrapper img,
  .page-register__step-image,
  .page-register__security-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-register__main-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }
  .page-register__description {
    font-size: 0.95rem;
  }
  .page-register__section-title {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }
  .page-register__steps-grid {
    grid-template-columns: 1fr; /* Single column on very small screens */
  }
}