/* register.css */

.page-register {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
  font-family: Arial, sans-serif; /* A common font for readability */
}

/* Ensure the main content doesn't get pushed down by shared header offset excessively */
/* body padding-top is handled by shared.css, so .page-register__hero-section only needs a small top padding */
.page-register__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles main offset */
  padding-bottom: 40px;
  background-color: #2F6BFF; /* Primary color for hero background */
  display: flex; /* For image and content to be sibling blocks */
  flex-direction: column; /* Stack image then content */
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-register__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; /* Space between image and text */
}

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

.page-register__hero-content {
  max-width: 900px;
  padding: 0 20px;
  position: relative; /* Ensure text is not absolutely positioned over image */
  z-index: 1; /* Ensure text is above any subtle background elements */
}

.page-register__main-title {
  color: #FFFFFF; /* White for main title on blue background */
  font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.page-register__hero-description {
  color: #D6E2FF; /* Border color, lighter blue for description */
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-register__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly different gradient on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-register__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.page-register__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #2F6BFF; /* Primary color */
  border-radius: 2px;
}

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

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

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

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

.page-register__benefit-icon {
  width: 250px; /* Minimum 200px, larger for content */
  height: 187px; /* Maintain aspect ratio (4:3) */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #D6E2FF;
}

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

.page-register__card-description {
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  line-height: 1.5;
}

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

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-register__step-item {
  background-color: #F4F7FB; /* Background */
  border-left: 5px solid #2F6BFF; /* Primary color accent */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

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

.page-register__cta-button--bottom {
  margin-top: 40px;
  text-align: center;
  width: auto;
}

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

.page-register__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border color */
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-register__faq-question {
  font-size: 1.2rem;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
  font-weight: 600;
  cursor: pointer; /* Indicate it's clickable, though JS not implemented */
}

.page-register__faq-answer {
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
}

.page-register__cta-section {
  padding: 60px 0;
  background-color: #2F6BFF; /* Primary color */
  text-align: center;
  color: #FFFFFF;
}

.page-register__cta-section .page-register__section-title {
  color: #FFFFFF; /* White title on primary background */
}

.page-register__cta-section .page-register__section-title::after {
  background-color: #6FA3FF; /* Auxiliary color for accent */
}

.page-register__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #D6E2FF; /* Lighter blue for description */
}

.page-register__cta-button--final {
  background: linear-gradient(180deg, #d6d604 0%, #ffc107 100%); /* Yellow-green/lemon yellow accent */
  color: #1F2D3D; /* Text Main, for contrast on yellow button */
  padding: 18px 40px;
  font-size: 1.2rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-register__cta-button--final:hover {
  background: linear-gradient(180deg, #ffc107 0%, #d6d604 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

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

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

  .page-register__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-register__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-register__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-register__benefit-card {
    padding: 20px;
  }

  .page-register__benefit-icon {
    width: 100%; /* Ensure images are responsive and not too small */
    max-width: 300px; /* Max width for smaller screens */
    height: auto;
  }

  .page-register__card-title {
    font-size: 1.2rem;
  }

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

  .page-register__step-title {
    font-size: 1.1rem;
  }

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

  /* Crucial: mobile content image overflow prevention */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}