.page-register {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-register__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  padding-top: var(--header-offset, 120px);
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-register__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-register__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-register__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-register__hero-button {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-register__hero-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-register__hero-button--register:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-register__hero-button--login {
  background-color: #FCBC45;
  color: #FFFFFF;
}

.page-register__hero-button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-3px);
}

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

.page-register__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-register__section-description {
  font-size: 1.1em;
  color: #333333;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

.page-register__value-item {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-register__value-item:hover {
  transform: translateY(-5px);
}

.page-register__value-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-register__value-heading {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-register__value-text {
  color: #555555;
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 50px;
}

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 20px;
  position: relative;
  padding-left: 80px;
}

.page-register__step-item:last-child {
  margin-bottom: 0;
}

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

.page-register__step-heading {
  font-size: 1.8em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

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

.page-register__step-image {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-left: 20px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-register__cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 20px auto;
  padding: 18px 40px;
  background-color: #FCBC45;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

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

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

.page-register__condition-item {
  background-color: #F8F8F8;
  padding: 20px;
  border-left: 5px solid #000000;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.page-register__conditions-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 1em;
  color: #555555;
}

.page-register__conditions-footer a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.page-register__conditions-footer a:hover {
  text-decoration: underline;
}

.page-register__conditions-image {
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

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

.page-register__faq-item {
  margin-bottom: 15px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
}

.page-register__faq-question {
  background-color: #F8F8F8;
  color: #000000;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.page-register__faq-arrow {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #000000;
  transition: transform 0.3s ease;
}

.page-register__faq-question.active .page-register__faq-arrow {
  transform: rotate(180deg);
}

.page-register__faq-answer {
  padding: 0 25px;
  background-color: #FFFFFF;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-register__faq-answer p {
  padding: 15px 0;
  margin: 0;
}

.page-register__faq-question.active + .page-register__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding: 15px 25px;
}

.page-register__faq-image {
  display: block;
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-register__faq-contact {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #555555;
}

.page-register__faq-contact a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.page-register__faq-contact a:hover {
  text-decoration: underline;
}

.page-register__cta-section {
  background-color: #F8F8F8;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-register__cta-button--large {
  font-size: 1.8em;
  padding: 20px 45px;
}

.page-register__cta-small-text {
  margin-top: 20px;
  font-size: 1em;
  color: #555555;
}

.page-register__cta-small-text a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.page-register__cta-small-text a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 2.8em;
  }
  .page-register__hero-description {
    font-size: 1.1em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__step-item {
    padding-left: 60px;
  }
  .page-register__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-register__hero-content {
    width: 90%;
    padding: 15px;
  }
  .page-register__hero-title {
    font-size: 2em;
  }
  .page-register__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-register__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }
  .page-register__value-grid {
    grid-template-columns: 1fr;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__section-description {
    font-size: 0.95em;
  }
  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
  }
  .page-register__step-number {
    position: static;
    margin-bottom: 20px;
  }
  .page-register__step-image {
    margin-top: 20px;
    margin-left: 0;
    max-width: 100%;
    height: auto;
    max-width: 100%; height: auto;
  }
  .page-register__conditions-image, .page-register__faq-image {
    max-width: 100%; height: auto;
  }
  .page-register__cta-button {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-register__cta-button--large {
    font-size: 1.5em;
    padding: 18px 35px;
  }
  /* Ensure all content area images are responsive and do not overflow */
  .page-register img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-register__value-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-register__step-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-register__conditions-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-register__faq-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.5em;
  }
  .page-register__hero-description {
    font-size: 0.9em;
  }
  .page-register__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px 0;
    width: 100%;
  }
  .page-register__section-title {
    font-size: 1.5em;
  }
  .page-register__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-register__faq-answer p {
    padding: 10px 0;
  }
  .page-register__faq-question.active + .page-register__faq-answer {
    padding: 10px 20px;
  }
  .page-register__cta-button--large {
    font-size: 1.2em;
    padding: 15px 25px;
  }
}