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

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

/* Hero Section */
.page-register__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF; /* Light text for hero content over dark image */
  text-align: center;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-register__hero-container {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
}

.page-register__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for highlight */
  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-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

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

.page-register__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-register__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-register__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

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

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

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

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

.page-register__value-icon {
  width: 100%; /* Ensure images are responsive */
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-register__value-text {
  font-size: 0.95em;
  color: #666666;
}

/* Steps Section */
.page-register__steps-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-register__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

.page-register__step-item::before {
  counter-increment: step-counter;
  content: "Step " counter(step-counter);
  font-size: 1.8em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
}

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

.page-register__step-text {
  font-size: 1.05em;
  color: #666666;
  max-width: 700px;
  margin-bottom: 30px;
}

.page-register__step-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-register__cta-text {
  text-align: center;
  font-size: 1.1em;
  margin-top: 50px;
  color: #333333;
}

.page-register__cta-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-register__cta-link:hover {
  color: #e0a53b;
  text-decoration: underline;
}

/* Conditions Section */
.page-register__conditions-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.page-register__conditions-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-register__condition-item {
  background-color: #FFFFFF;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-size: 1.05em;
  color: #333333;
  line-height: 1.8;
}

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

/* FAQ Section */
.page-register__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

.page-register__faq-question {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  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: #e0a53b;
}

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

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

.page-register__faq-answer.active {
  max-height: 300px; /* Adjust based on content */
  padding: 20px 25px;
}

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

/* Final CTA Section */
.page-register__cta-final-section {
  background-color: #000000; /* Main brand color */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

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

.page-register__cta-final-section .page-register__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-register__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-register__button--large:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

/* Floating Buttons */
.page-register__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-register__floating-button {
  display: block;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

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

.page-register__floating-button--register:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

.page-register__floating-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-register__floating-button--login:hover {
  background-color: #e0a53b;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-register__hero-title {
    font-size: 2.5em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 60px 0;
  }
  .page-register__hero-title {
    font-size: 2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-register__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__value-grid {
    grid-template-columns: 1fr;
  }
  .page-register__step-item {
    padding: 0 10px;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-register__faq-answer {
    padding: 15px 20px;
  }
  .page-register__floating-buttons {
    flex-direction: row;
    width: calc(100% - 40px);
    bottom: 10px;
    right: 20px;
    left: 20px;
    justify-content: space-around;
  }
  .page-register__floating-button {
    flex: 1;
    margin: 0 5px;
  }

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

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.8em;
  }
  .page-register__section-title {
    font-size: 1.5em;
  }
  .page-register__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-register__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-register__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-register__faq-answer {
    padding: 12px 15px;
  }
  .page-register__floating-buttons {
    bottom: 5px;
    right: 10px;
    left: 10px;
  }
  .page-register__floating-button {
    padding: 10px 15px;
    font-size: 0.9em;
  }
}