.page-register {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

.page-register__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a; /* Dark background for contrast with hero content */
  color: #ffffff;
  padding: 0;
  text-align: center;
}

.page-register__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for hero content */
  margin: 0 auto;
}

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

.page-register__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

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

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

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

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

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

.page-register__section-title {
  font-size: 2.5em;
  color: #FF6B00;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-register__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #00A86B;
  border-radius: 2px;
}

.page-register__section-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

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

.page-register__value-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.page-register__value-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-left: 5px solid #00A86B;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

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

.page-register__cta-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: #FF6B00;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-register__step-card {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-register__step-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-register__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #00A86B;
  color: #ffffff;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 168, 107, 0.4);
}

.page-register__step-title {
  font-size: 1.5em;
  color: #FF6B00;
  margin-bottom: 15px;
}

.page-register__step-description {
  color: #666666;
  font-size: 1em;
  flex-grow: 1;
}

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

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

.page-register__conditions-list {
  list-style: disc;
  margin: 0 auto;
  padding-left: 20px;
  max-width: 800px;
  font-size: 1.05em;
  color: #444444;
}

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

.page-register__conditions-link {
  color: #FF6B00;
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-register__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.page-register__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-register__faq-question.active {
  background-color: #e65c00;
}

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

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

.page-register__faq-answer.open {
  max-height: 500px; /* Sufficiently large value for content */
  padding: 20px 25px;
}

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

.page-register__cta-final-section {
  background-color: #00A86B;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-register__cta-final-content {
  max-width: 900px;
}

.page-register__cta-final-section .page-register__section-title {
  color: #ffffff;
}

.page-register__cta-final-section .page-register__section-title::after {
  background-color: #FF6B00;
}

.page-register__cta-final-section .page-register__section-text {
  color: #e0e0e0;
  margin-bottom: 50px;
}

.page-register__cta-button--large {
  padding: 18px 40px;
  font-size: 1.4em;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-register {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }

  .page-register__hero-title {
    font-size: 2.2em;
  }

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

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

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

  .page-register__section-text {
    font-size: 0.95em;
  }

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

  .page-register__hero-content {
    max-width: 90%;
    padding: 15px;
  }

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

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

  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-register__faq-answer.open {
    padding: 15px 20px;
  }

  .page-register__cta-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }

  /* Mobile content image constraint */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-register__hero-content {
    padding: 10px;
  }

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

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