.page-register {
  padding-top: var(--header-offset, 120px);
  color: #333333; /* Dark text for light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

.page-register__hero-section {
  background-color: #0A2463; /* Main brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-register__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-register__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Overlay for text readability */
}

.page-register__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-register__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E3B505; /* Accent color for title */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__hero-button,
.page-register__action-button {
  display: inline-block;
  background-color: #E3B505; /* Accent color for buttons */
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register__hero-button:hover,
.page-register__action-button:hover {
  background-color: #f5db9c; /* Lighter shade on hover */
  transform: translateY(-2px);
}

.page-register__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-register__section-title {
  font-size: 2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-register__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #E3B505;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-register__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-register__card-icon {
  width: 250px; /* Min width 200px */
  height: 180px; /* Min height 200px for ratio, but 180px for aspect */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-register__card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-register__card-text {
  font-size: 1em;
  color: #555555;
}

.page-register__registration-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-register__step-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-left: 90px;
}

.page-register__step-number {
  background-color: #E3B505;
  color: #0A2463;
  font-size: 1.8em;
  font-weight: bold;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 15px;
  top: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-register__step-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-register__step-text {
  font-size: 1em;
  color: #555555;
}

.page-register__conditions-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 40px;
  font-size: 1.1em;
  color: #444444;
}

.page-register__conditions-item {
  margin-bottom: 15px;
  line-height: 1.8;
}

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

.page-register__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #0A2463;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
  transition: background-color 0.3s ease;
}

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

.page-register__faq-toggle {
  font-size: 1.5em;
  color: #E3B505;
  transition: transform 0.3s ease;
}

.page-register__faq-item[open] .page-register__faq-toggle {
  transform: rotate(45deg);
}

.page-register__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #555555;
  border-top: 1px solid #f0f0f0;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-register__value-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-register__registration-steps {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-register__hero-title {
    font-size: 2em;
  }

  .page-register__hero-description {
    font-size: 1em;
  }

  .page-register__hero-button,
  .page-register__action-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-register__section-title {
    font-size: 1.8em;
  }

  .page-register__section-description {
    font-size: 1em;
  }

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

  .page-register__step-item {
    padding-left: 20px;
    padding-top: 80px;
    align-items: center;
    text-align: center;
  }

  .page-register__step-number {
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
  }

  .page-register__card-icon {
    width: 250px; /* Ensure minimum width of 200px */
    height: auto;
  }

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

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

  /* Ensure content images do not overflow */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}