.page-registration-guide-forgot-password {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2342; /* Main dark blue background */
}

.page-registration-guide-forgot-password__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-registration-guide-forgot-password__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%); /* Gradient from main to slightly lighter blue */
  padding: 100px 0;
  text-align: center;
  border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-registration-guide-forgot-password__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-registration-guide-forgot-password__subtitle {
  font-size: 1.3em;
  color: #B0C4DE; /* Lighter blue for subtitle */
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-registration-guide-forgot-password__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-registration-guide-forgot-password__cta-button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-registration-guide-forgot-password__content-section {
  padding: 60px 0;
  line-height: 1.8;
}

.page-registration-guide-forgot-password__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.page-registration-guide-forgot-password__content-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-registration-guide-forgot-password__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-registration-guide-forgot-password__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-registration-guide-forgot-password__step {
  background-color: #1A3F6C; /* Lighter blue for step cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700; /* Gold accent on left */
}

.page-registration-guide-forgot-password__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for step titles */
  margin-bottom: 15px;
}

.page-registration-guide-forgot-password__step p {
  font-size: 1em;
  color: #C0C0C0;
}

.page-registration-guide-forgot-password__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-registration-guide-forgot-password__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-registration-guide-forgot-password__list strong {
  color: #FFD700;
}

.page-registration-guide-forgot-password__text-link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-registration-guide-forgot-password__text-link:hover {
  color: #E6C200;
}

.page-registration-guide-forgot-password__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
}

.page-registration-guide-forgot-password__action-panel {
  background-color: #1A3F6C;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
}

.page-registration-guide-forgot-password__panel-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-registration-guide-forgot-password__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-registration-guide-forgot-password__secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  border: 2px solid #FFD700; /* Gold border */
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-registration-guide-forgot-password__secondary-button:hover {
  background-color: #FFD700; /* Gold background on hover */
  color: #0A2342; /* Dark blue text on hover */
}

.page-registration-guide-forgot-password__faq-list {
  margin-top: 40px;
}

.page-registration-guide-forgot-password__faq-item {
  background-color: #1A3F6C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-registration-guide-forgot-password__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-registration-guide-forgot-password__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  display: none; /* Hidden by default, toggled by JS */
}

.page-registration-guide-forgot-password__faq-item.active .page-registration-guide-forgot-password__faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-registration-guide-forgot-password__hero-section {
    padding: 80px 0;
  }

  .page-registration-guide-forgot-password__main-title {
    font-size: 2.5em;
  }

  .page-registration-guide-forgot-password__subtitle {
    font-size: 1.1em;
  }

  .page-registration-guide-forgot-password__section-title {
    font-size: 2em;
  }

  .page-registration-guide-forgot-password__step-by-step {
    grid-template-columns: 1fr;
  }

  .page-registration-guide-forgot-password__panel-title {
    font-size: 1.8em;
  }

  .page-registration-guide-forgot-password__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-registration-guide-forgot-password__cta-button,
  .page-registration-guide-forgot-password__secondary-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-registration-guide-forgot-password__main-title {
    font-size: 2em;
  }

  .page-registration-guide-forgot-password__section-title {
    font-size: 1.8em;
  }

  .page-registration-guide-forgot-password__step-title {
    font-size: 1.5em;
  }

  .page-registration-guide-forgot-password__faq-question {
    font-size: 1.3em;
  }
}