/* style/registration-guide-789b-account-creation-steps.css */

.page-registration-guide-789b-account-creation-steps {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

.page-registration-guide-789b-account-creation-steps__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-registration-guide-789b-account-creation-steps__hero {
  background: linear-gradient(135deg, #0A192F 0%, #2a3a5f 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-registration-guide-789b-account-creation-steps__hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-registration-guide-789b-account-creation-steps__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-registration-guide-789b-account-creation-steps__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-registration-guide-789b-account-creation-steps__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold accent for buttons */
  color: #0A192F; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-registration-guide-789b-account-creation-steps__cta-button:hover {
  background-color: #e0b800; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-registration-guide-789b-account-creation-steps__button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-registration-guide-789b-account-creation-steps__button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-registration-guide-789b-account-creation-steps__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-registration-guide-789b-account-creation-steps__section:last-of-type {
  border-bottom: none;
}

.page-registration-guide-789b-account-creation-steps__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-registration-guide-789b-account-creation-steps__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-registration-guide-789b-account-creation-steps__introduction p,
.page-registration-guide-789b-account-creation-steps__steps-overview p,
.page-registration-guide-789b-account-creation-steps__detailed-steps p,
.page-registration-guide-789b-account-creation-steps__conclusion p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #B0B0B0;
  text-align: justify;
}

.page-registration-guide-789b-account-creation-steps__benefits-list,
.page-registration-guide-789b-account-creation-steps__form-fields,
.page-registration-guide-789b-account-creation-steps__overview-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-registration-guide-789b-account-creation-steps__benefits-list li,
.page-registration-guide-789b-account-creation-steps__form-fields li,
.page-registration-guide-789b-account-creation-steps__overview-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05em;
  color: #C0C0C0;
}

.page-registration-guide-789b-account-creation-steps__list-icon {
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2em;
}

.page-registration-guide-789b-account-creation-steps__overview-list {
  counter-reset: step-counter;
}

.page-registration-guide-789b-account-creation-steps__overview-list li::before {
  content: counter(step-counter) ". ";
  counter-increment: step-counter;
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-registration-guide-789b-account-creation-steps__detailed-steps .page-registration-guide-789b-account-creation-steps__step-item {
  background-color: #1A2A47; /* Slightly lighter dark blue for step items */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-registration-guide-789b-account-creation-steps__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.page-registration-guide-789b-account-creation-steps__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-registration-guide-789b-account-creation-steps__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFD700;
}

.page-registration-guide-789b-account-creation-steps__image-caption {
  font-size: 0.9em;
  color: #909090;
  margin-top: 10px;
}

.page-registration-guide-789b-account-creation-steps__faq-item {
  background-color: #1A2A47;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-789b-account-creation-steps__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-registration-guide-789b-account-creation-steps__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-registration-guide-789b-account-creation-steps__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-registration-guide-789b-account-creation-steps__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  display: none; /* Hidden by default, toggled by JS */
  margin-top: 15px;
}

.page-registration-guide-789b-account-creation-steps__faq-answer.active {
  display: block;
}

.page-registration-guide-789b-account-creation-steps__conclusion {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-registration-guide-789b-account-creation-steps__hero {
    padding: 80px 0;
  }

  .page-registration-guide-789b-account-creation-steps__hero-title {
    font-size: 2.5em;
  }

  .page-registration-guide-789b-account-creation-steps__hero-subtitle {
    font-size: 1.1em;
  }

  .page-registration-guide-789b-account-creation-steps__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-registration-guide-789b-account-creation-steps__section-title {
    font-size: 2em;
  }

  .page-registration-guide-789b-account-creation-steps__introduction p,
  .page-registration-guide-789b-account-creation-steps__steps-overview p,
  .page-registration-guide-789b-account-creation-steps__detailed-steps p,
  .page-registration-guide-789b-account-creation-steps__conclusion p {
    font-size: 1em;
  }

  .page-registration-guide-789b-account-creation-steps__step-title {
    font-size: 1.5em;
  }

  .page-registration-guide-789b-account-creation-steps__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-registration-guide-789b-account-creation-steps__hero-title {
    font-size: 2em;
  }

  .page-registration-guide-789b-account-creation-steps__hero-subtitle {
    font-size: 0.9em;
  }

  .page-registration-guide-789b-account-creation-steps__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-registration-guide-789b-account-creation-steps__section-title {
    font-size: 1.8em;
  }

  .page-registration-guide-789b-account-creation-steps__step-title {
    font-size: 1.3em;
  }

  .page-registration-guide-789b-account-creation-steps__faq-question {
    font-size: 1.1em;
  }

  .page-registration-guide-789b-account-creation-steps__benefits-list li,
  .page-registration-guide-789b-account-creation-steps__form-fields li,
  .page-registration-guide-789b-account-creation-steps__overview-list li {
    padding-left: 25px;
    font-size: 0.95em;
  }
}