.page-register-guide {
  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); /* Ensures content starts below fixed header */
}

.page-register-guide__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  padding: 0;
  margin-bottom: 40px;
}

.page-register-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-register-guide__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.page-register-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay for text */
  border-radius: 10px;
}

.page-register-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-register-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-register-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register-guide__cta-button--register {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for contrast */
}

.page-register-guide__cta-button--register:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

.page-register-guide__cta-button--login {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register button color */
  border: 2px solid #FCBC45;
}

.page-register-guide__cta-button--login:hover {
  background-color: #1a1a1a;
  transform: translateY(-3px);
}

.page-register-guide__content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
}

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

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

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

.page-register-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-register-guide__feature-card {
  background-color: #F8F8F8;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-register-guide__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-register-guide__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-register-guide__feature-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

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

.page-register-guide__steps-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

.page-register-guide__step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #F8F8F8;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

.page-register-guide__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FCBC45;
  background-color: #000000;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  border: 4px solid #FCBC45;
  z-index: 1;
}

.page-register-guide__step-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-register-guide__step-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
}

.page-register-guide__step-description {
  font-size: 1.1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-register-guide__step-cta {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-register-guide__step-cta:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

.page-register-guide__tips-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 60px auto;
  max-width: 800px;
}

.page-register-guide__tip-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-register-guide__faq-section {
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.page-register-guide__faq-item {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.page-register-guide__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-register-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #FCBC45;
}

.page-register-guide__faq-question.active::after {
  content: '-';
}

.page-register-guide__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none;
  padding-top: 10px;
}

.page-register-guide__faq-answer.active {
  display: block;
}

.page-register-guide__final-cta {
  text-align: center;
  background-color: #000000;
  padding: 60px 20px;
  border-radius: 20px;
  margin-top: 60px;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-register-guide__final-cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-register-guide__final-cta-description {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register-guide__related-links {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #F8F8F8;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
}

.page-register-guide__link-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-register-guide__link-item a {
  display: block;
  background-color: #000000;
  color: #FCBC45;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-register-guide__link-item a:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-register-guide__hero-title {
    font-size: 2.8em;
  }

  .page-register-guide__hero-description {
    font-size: 1.2em;
  }

  .page-register-guide__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

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

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

  .page-register-guide__final-cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-register-guide__hero-content {
    width: 90%;
    padding: 15px;
  }

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

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

  .page-register-guide__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
    margin: 8px;
  }

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

  .page-register-guide__section-intro {
    font-size: 1em;
  }

  .page-register-guide__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-register-guide__feature-card {
    padding: 25px;
  }

  .page-register-guide__feature-title {
    font-size: 1.6em;
  }

  .page-register-guide__step-card {
    padding: 25px;
  }

  .page-register-guide__step-number {
    width: 70px;
    height: 70px;
    font-size: 2.5em;
  }

  .page-register-guide__step-title {
    font-size: 1.6em;
  }

  .page-register-guide__step-description {
    font-size: 0.95em;
  }

  .page-register-guide__tip-item, .page-register-guide__faq-item {
    padding: 18px;
    font-size: 1em;
  }

  .page-register-guide__faq-question {
    font-size: 1.2em;
  }

  .page-register-guide__final-cta {
    padding: 40px 15px;
  }

  .page-register-guide__final-cta-title {
    font-size: 2em;
  }

  .page-register-guide__final-cta-description {
    font-size: 1.1em;
  }

  .page-register-guide__link-item a {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-register-guide img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensure images fit within their containers without cropping too much */
  }

  .page-register-guide__hero-image {
    height: 400px; /* Adjust hero image height for mobile */
  }

  .page-register-guide__feature-image, .page-register-guide__step-image {
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-register-guide__cta-button {
    padding: 10px 20px;
    font-size: 1em;
    margin: 5px;
  }

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

  .page-register-guide__step-title {
    font-size: 1.4em;
  }

  .page-register-guide__final-cta-title {
    font-size: 1.8em;
  }

  .page-register-guide__final-cta-description {
    font-size: 1em;
  }

  .page-register-guide__link-list {
    flex-direction: column;
  }

  .page-register-guide__hero-image {
    height: 300px; /* Further adjust hero image height for smaller mobile */
  }
}