.page-register {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-register__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-register__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

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

.page-register__hero-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.page-register__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-register__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-register__section-title {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #000000;
  font-weight: bold;
}

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

.page-register__value-item {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-register__value-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.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;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-register__steps-item {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  counter-increment: step-counter;
  position: relative;
  padding-left: 60px; /* Space for step number */
}

.page-register__steps-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 30px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

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

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

.page-register__cta-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 50px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.page-register__conditions-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-register__conditions-image {
  width: 400px;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__conditions-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 600px;
}

.page-register__conditions-item {
  background-color: #F8F8F8;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  color: #333333;
  position: relative;
  padding-left: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-register__conditions-item::before {
  content: '✓';
  position: absolute;
  left: 15px;
  color: #000000;
  font-weight: bold;
}

.page-register__faq-container {
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid #EEEEEE;
}

.page-register__faq-question {
  display: block;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  color: #000000;
  position: relative;
  user-select: none;
}

.page-register__faq-question::-webkit-details-marker {
  display: none;
}

.page-register__faq-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-register__faq-answer {
  padding: 0 20px 20px 20px;
  color: #555555;
}

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

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

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

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

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

  .page-register__conditions-content {
    flex-direction: column;
  }

  .page-register__hero-image, .page-register__value-icon, .page-register__conditions-image {
    max-width: 100%;
    height: auto;
  }

  .page-register__value-icon, .page-register__conditions-image {
    width: 100%; /* Ensure images are responsive within their containers */
    height: auto;
  }

  .page-register__value-item, .page-register__steps-item, .page-register__conditions-item, .page-register__faq-item {
    padding: 20px;
  }

  .page-register__steps-item::before {
    left: 15px;
    top: 20px;
  }

  .page-register__steps-item {
    padding-left: 50px;
  }

  .page-register__faq-question {
    padding-right: 50px;
  }

  .page-register__faq-toggle {
    right: 15px;
  }

  .page-register__section {
    padding: 40px 15px;
  }
}

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

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

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

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

  .page-register__value-heading, .page-register__steps-heading {
    font-size: 1.2em;
  }

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