.page-register {
  color: #333333; /* Dark text for light body background */
}

.page-register__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background: linear-gradient(135deg, #007bff, #0056b3); /* Primary blue gradient background */
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 0; /* Image will extend to bottom */
}

.page-register__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 40px;
  position: relative;
  z-index: 2;
}

.page-register__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffc107; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-register__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-register__hero-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -50px; /* Overlap with hero text slightly */
  position: relative;
  z-index: 1;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.3);
}

.page-register__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color for CTA */
  color: #0056b3; /* Darker blue text for contrast */
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-register__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-register__cta-button--secondary {
  background-color: #0056b3;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-register__cta-button--secondary:hover {
  background-color: #003f80;
  border-color: #e0a800;
}

.page-register__cta-button--large {
  padding: 22px 50px;
  font-size: 1.4em;
}

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

.page-register__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-register__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
  color: #555555;
}

.page-register__value-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

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

.page-register__benefit-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-register__benefit-icon {
  width: 200px; /* Enforce min size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-register__benefit-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-register__benefit-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

.page-register__steps-section {
  padding: 60px 0;
}

.page-register__step-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 900px;
}

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.page-register__step-number {
  background-color: #007bff;
  color: #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 25px;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-register__step-content {
  text-align: left;
}

.page-register__step-title {
  font-size: 1.6em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-register__step-text {
  font-size: 1.05em;
  line-height: 1.6;
  color: #555555;
}

.page-register__conditions-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.page-register__conditions-list {
  list-style: disc;
  max-width: 900px;
  margin: 0 auto 30px;
  padding-left: 25px;
}

.page-register__condition-item {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #555555;
}

.page-register__condition-item strong {
  color: #333333;
}

.page-register__text-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.page-register__text-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-register__faq-section {
  padding: 60px 0;
}

.page-register__faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.page-register__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-register__faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-register__faq-question:hover {
  background-color: #f0f0f0;
}

.page-register__faq-item[open] .page-register__faq-question {
  background-color: #f0f0f0;
  color: #007bff;
}

.page-register__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #007bff;
}

.page-register__faq-item[open] .page-register__faq-toggle {
  content: '-';
  transform: rotate(45deg); /* Simple visual change for open state */
}

.page-register__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #666666;
}

.page-register__final-cta-section {
  background-color: #007bff;
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-register__final-cta-section .page-register__section-title {
  color: #ffc107;
}

.page-register__final-cta-section .page-register__section-intro {
  color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-register__main-title {
    font-size: 2.8em;
  }
  .page-register__hero-description {
    font-size: 1.2em;
  }
  .page-register__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 60px 20px 0;
  }
  .page-register__hero-container {
    padding: 60px 20px 30px;
  }
  .page-register__main-title {
    font-size: 2.2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-register__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-register__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-register__step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .page-register__step-title {
    font-size: 1.4em;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }
  .page-register__faq-answer {
    padding: 0 20px 18px;
  }
  /* Ensure all content images in .page-register are responsive and not smaller than 200px */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
  .page-register__benefit-icon {
    width: 200px; /* Maintain minimum size */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-register__main-title {
    font-size: 1.8em;
  }
  .page-register__hero-description {
    font-size: 0.9em;
  }
  .page-register__section-title {
    font-size: 1.6em;
  }
  .page-register__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-register__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}