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

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

/* Hero Section */
.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
  background-color: #F4F7FB;
}

.page-register__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-register__hero-content {
  padding: 0 20px;
  max-width: 900px;
}

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

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

.page-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  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__cta-button--bottom {
  margin-top: 40px;
}

.page-register__cta-button--faq {
  margin-top: 30px;
}

/* Section Titles */
.page-register__section-title {
  color: #000000; /* Custom Color_1776249996415 */
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

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

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

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

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

.page-register__step-image {
  width: 100%;
  max-width: 300px;
  height: 225px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-register__step-title {
  color: #2F6BFF; /* Primary color for emphasis */
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

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

.page-register__security-image {
  flex: 1 1 500px;
  max-width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-register__security-text {
  flex: 1 1 400px;
}

.page-register__security-text p {
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.page-register__security-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-register__security-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #1F2D3D; /* Text Main */
  font-size: 1rem;
}

.page-register__security-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #2F6BFF; /* Primary color */
  font-weight: bold;
}

.page-register__text-link {
  color: #2F6BFF; /* Primary color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-register__text-link:hover {
  color: #6FA3FF; /* Secondary color on hover */
  text-decoration: underline;
}

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

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

.page-register__faq-question {
  color: #2F6BFF; /* Primary color */
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
}

.page-register__faq-question--active {
  color: #6FA3FF; /* Secondary color when active */
}

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

/* Promotion CTA Section */
.page-register__promotion-cta {
  padding: 60px 0;
  text-align: center;
  background-color: #F4F7FB; /* Background */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-register__hero-image {
    max-width: 100%;
  }
  .page-register__security-content {
    flex-direction: column;
    text-align: center;
  }
  .page-register__security-image {
    max-width: 100%;
    height: auto;
  }
  .page-register__security-text {
    flex: 1 1 auto;
  }
}

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

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

  .page-register__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-register__hero-section {
    padding: 20px 0;
  }

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

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

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

  .page-register__step-image {
    max-width: 100%;
    height: auto;
  }

  .page-register__security-section,
  .page-register__faq-section,
  .page-register__promotion-cta,
  .page-register__steps-section {
    padding: 40px 0;
  }
  
  /* IMPORTANT: Mobile content area image overflow prevention */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all content area images are at least 200px, but responsive */
  .page-register__step-image,
  .page-register__security-image {
    min-width: 200px;
    min-height: 200px;
  }
}