/* style/register-login-registration-steps.css */
.page-register-login-registration-steps {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text on dark backgrounds */
  background-color: #0A1A3A; /* Main dark background */
  line-height: 1.6;
}

.page-register-login-registration-steps__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register-login-registration-steps__hero-section {
  background: linear-gradient(135deg, #0A1A3A 0%, #30477E 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-register-login-registration-steps__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register-login-registration-steps__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-register-login-registration-steps__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-register-login-registration-steps__button--primary {
  background-color: #FFD700;
  color: #0A1A3A;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-register-login-registration-steps__button--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-register-login-registration-steps__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-register-login-registration-steps__button--secondary:hover {
  background-color: #FFD700;
  color: #0A1A3A;
  transform: translateY(-3px);
}

.page-register-login-registration-steps__button--step {
  margin-top: 20px;
}

.page-register-login-registration-steps__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-register-login-registration-steps__content-section {
  padding: 80px 0;
}

.page-register-login-registration-steps__content-section--dark {
  background-color: #0F2240;
}

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

.page-register-login-registration-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-register-login-registration-steps__sub-section-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 50px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-register-login-registration-steps__text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-register-login-registration-steps__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-register-login-registration-steps__list li {
  background-color: #1A305B;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login-registration-steps__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.3em;
}

.page-register-login-registration-steps__list-highlight {
  color: #FFD700;
}

.page-register-login-registration-steps__sub-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-register-login-registration-steps__sub-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-register-login-registration-steps__steps-section {
  padding: 80px 0;
  background-color: #0A1A3A;
}

.page-register-login-registration-steps__step-item {
  background-color: #1A305B;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.page-register-login-registration-steps__step-item::before {
  content: attr(data-step-number);
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFD700;
  color: #0A1A3A;
  padding: 10px 20px;
  font-size: 1.8em;
  font-weight: bold;
  border-bottom-right-radius: 12px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.page-register-login-registration-steps__step-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  padding-top: 20px; /* Adjust for step number */
}

.page-register-login-registration-steps__step-description {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 30px;
  text-align: justify;
}

.page-register-login-registration-steps__step-image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-register-login-registration-steps__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid #30477E;
}

.page-register-login-registration-steps__faq-section {
  padding: 80px 0;
}

.page-register-login-registration-steps__faq-item {
  background-color: #1A305B;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login-registration-steps__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-register-login-registration-steps__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-register-login-registration-steps__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-register-login-registration-steps__faq-answer {
  font-size: 1.1em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding-top: 0;
}

.page-register-login-registration-steps__faq-answer.active {
  max-height: 200px; /* Arbitrary max-height, adjust as needed */
  padding-top: 15px;
}

.page-register-login-registration-steps__faq-cta {
  margin-top: 40px;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-register-login-registration-steps__cta-section {
  background: linear-gradient(90deg, #0A1A3A, #1A305B);
  padding: 100px 0;
  text-align: center;
}

.page-register-login-registration-steps__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-register-login-registration-steps__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-register-login-registration-steps__hero-title {
    font-size: 2.5em;
  }

  .page-register-login-registration-steps__hero-subtitle,
  .page-register-login-registration-steps__text,
  .page-register-login-registration-steps__list li,
  .page-register-login-registration-steps__sub-list li,
  .page-register-login-registration-steps__faq-answer {
    font-size: 1em;
  }

  .page-register-login-registration-steps__section-title {
    font-size: 2em;
  }

  .page-register-login-registration-steps__sub-section-title {
    font-size: 1.5em;
  }

  .page-register-login-registration-steps__step-title {
    font-size: 1.7em;
  }

  .page-register-login-registration-steps__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-register-login-registration-steps__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-register-login-registration-steps__step-item {
    padding: 30px;
  }

  .page-register-login-registration-steps__step-item::before {
    font-size: 1.5em;
    padding: 8px 15px;
  }

  .page-register-login-registration-steps__cta-title {
    font-size: 2em;
  }

  .page-register-login-registration-steps__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-register-login-registration-steps__hero-title {
    font-size: 2em;
  }

  .page-register-login-registration-steps__section-title {
    font-size: 1.8em;
  }

  .page-register-login-registration-steps__step-title {
    font-size: 1.5em;
  }

  .page-register-login-registration-steps__button {
    width: 100%;
    margin-bottom: 15px;
  }

  .page-register-login-registration-steps__button--step {
    margin-top: 15px;
  }

  .page-register-login-registration-steps__cta-title {
    font-size: 1.8em;
  }
}