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

.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Primary color background */
  color: #FFFFFF; /* White text for dark background */
  position: relative;
  overflow: hidden;
}

.page-register__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-register__main-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FCBC45; /* Login button color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-register__register-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FCBC45;
}

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

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

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

.page-register__section-title {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 40px;
  color: #000000; /* Primary color */
}

.page-register__benefits-section {
  background-color: #FFFFFF; /* White background */
  padding: 60px 20px;
}

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

.page-register__benefit-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-register__benefit-icon {
  width: 250px;
  height: 187px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-register__benefit-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-register__benefit-description {
  font-size: 0.95em;
  color: #555555;
}

.page-register__steps-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.page-register__steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.page-register__steps-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 500px;
}

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

.page-register__step-number {
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
  flex-shrink: 0;
  margin-right: 15px;
}

.page-register__step-title {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 5px;
}

.page-register__step-description {
  font-size: 0.9em;
  color: #555555;
}

.page-register__guidelines-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.page-register__guideline-item {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333333;
}

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

.page-register__guideline-item a {
  color: #FCBC45;
  text-decoration: none;
}

.page-register__guideline-item a:hover {
  text-decoration: underline;
}

.page-register__faq-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

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

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

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  background-color: #fcfcfc;
  transition: background-color 0.3s ease;
}

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

.page-register__faq-question:hover .page-register__faq-toggle {
  color: #000000;
}

.page-register__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #FCBC45;
}

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

.page-register__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #555555;
}

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

.page-register__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

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

.page-register__cta-section {
  background-color: #000000; /* Primary color dark background */
  color: #FFFFFF; /* White text for dark background */
  padding: 80px 20px;
  text-align: center;
}

.page-register__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Highlight with login button color */
}

.page-register__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.page-register__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

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

.page-register__cta-button--register {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text */
  border-color: #FCBC45;
}

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

.page-register__cta-button--login {
  background-color: #000000; /* Primary dark background */
  color: #FCBC45; /* Highlight color */
  border-color: #FCBC45;
}

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

.page-register__cta-button--download {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-register__main-title {
    font-size: 2.4em;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__hero-content {
    margin-bottom: 20px;
  }
  .page-register__steps-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 40px 15px;
  }
  .page-register__main-title {
    font-size: 2em;
  }
  .page-register__intro-text {
    font-size: 1em;
  }
  .page-register__register-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-register__benefits-section, .page-register__steps-section, .page-register__guidelines-section, .page-register__faq-section, .page-register__cta-section {
    padding: 40px 15px;
  }
  .page-register__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-register__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-register__benefit-icon {
    width: 200px;
    height: 150px;
  }
  .page-register__steps-image {
    max-width: 100%;
    height: auto;
  }
  .page-register__step-item {
    margin-bottom: 20px;
  }
  .page-register__step-number {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
  .page-register__step-title {
    font-size: 1.1em;
  }
  .page-register__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-register__faq-answer {
    padding: 0 20px 15px;
  }
  .page-register__cta-title {
    font-size: 2em;
  }
  .page-register__cta-description {
    font-size: 1em;
  }
  .page-register__cta-buttons {
    flex-direction: column;
  }
  .page-register__cta-button {
    width: 100%;
    max-width: 300px;
  }
  /* Ensure content images are responsive and not smaller than 200px display width/height */
  .page-register img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min-width */
    min- /* Enforce min-height, adjust as needed */
    object-fit: contain; /* or cover, depending on desired effect */
  }
  .page-register__hero-image {
    min-width: unset;
    min-height: unset;
  }
}