/* style/registration-login-step-by-step.css */

.page-registration-login-step-by-step {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6; /* Light background for readability */
}

.page-registration-login-step-by-step__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-registration-login-step-by-step__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #0A2463 60%, #FFD700 100%); /* Deep blue to gold gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-registration-login-step-by-step__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_geometric_pattern,tech_lines,subtle_gradient]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-registration-login-step-by-step__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Golden title */
  position: relative;
  z-index: 1;
}

.page-registration-login-step-by-step__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-registration-login-step-by-step__link-highlight {
  color: #FFD700; /* Highlighted link in golden */
  text-decoration: underline;
  font-weight: bold;
}

.page-registration-login-step-by-step__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Golden button */
  color: #0A2463; /* Deep blue text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-registration-login-step-by-step__btn-primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-registration-login-step-by-step__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Golden text for secondary button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: 2px solid #FFD700; /* Golden border */
  margin-left: 15px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-registration-login-step-by-step__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-registration-login-step-by-step__content-section,
.page-registration-login-step-by-step__steps-section,
.page-registration-login-step-by-step__promo-section,
.page-registration-login-step-by-step__faq-section,
.page-registration-login-step-by-step__call-to-action {
  padding: 60px 0;
}

.page-registration-login-step-by-step__content-section {
  background-color: #ffffff;
}

.page-registration-login-step-by-step__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Deep blue title */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-registration-login-step-by-step__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-registration-login-step-by-step__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333;
}

.page-registration-login-step-by-step__highlight {
  color: #0A2463;
  font-weight: bold;
}

.page-registration-login-step-by-step__link-inline {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-registration-login-step-by-step__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333;
}

.page-registration-login-step-by-step__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-registration-login-step-by-step__list-item-title {
  color: #0A2463;
}

.page-registration-login-step-by-step__step-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-registration-login-step-by-step__step-title {
  font-size: 2em;
  color: #0A2463;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-registration-login-step-by-step__step-description {
  font-size: 1.1em;
  margin-bottom: 25px;
  max-width: 800px;
  color: #555;
}

.page-registration-login-step-by-step__image-wrapper {
  margin-top: 30px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  max-width: 100%;
}

.page-registration-login-step-by-step__step-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-registration-login-step-by-step__image-caption {
  font-size: 0.95em;
  color: #777;
  padding: 15px;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
}

.page-registration-login-step-by-step__promo-section {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
}

.page-registration-login-step-by-step__promo-section .page-registration-login-step-by-step__section-title {
  color: #FFD700;
}

.page-registration-login-step-by-step__promo-section .page-registration-login-step-by-step__section-title::after {
  background-color: #FFD700;
}

.page-registration-login-step-by-step__promo-section .page-registration-login-step-by-step__text-block {
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.page-registration-login-step-by-step__ordered-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 30px;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-registration-login-step-by-step__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-registration-login-step-by-step__faq-section {
  background-color: #fcfcfc;
}

.page-registration-login-step-by-step__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-registration-login-step-by-step__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-registration-login-step-by-step__faq-answer {
  font-size: 1.05em;
  color: #555;
}

.page-registration-login-step-by-step__call-to-action {
  background: #FFD700; /* Golden background for CTA */
  color: #0A2463;
  padding: 70px 0;
  text-align: center;
}

.page-registration-login-step-by-step__call-to-action .page-registration-login-step-by-step__section-title {
  color: #0A2463;
}

.page-registration-login-step-by-step__call-to-action .page-registration-login-step-by-step__section-title::after {
  background-color: #0A2463;
}

.page-registration-login-step-by-step__call-to-action .page-registration-login-step-by-step__text-block {
  color: #0A2463;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-registration-login-step-by-step__hero-title {
    font-size: 2.5em;
  }

  .page-registration-login-step-by-step__hero-description {
    font-size: 1em;
  }

  .page-registration-login-step-by-step__btn-primary,
  .page-registration-login-step-by-step__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 0;
  }

  .page-registration-login-step-by-step__btn-secondary {
    margin-left: 0;
  }

  .page-registration-login-step-by-step__section-title {
    font-size: 2em;
  }

  .page-registration-login-step-by-step__step-title {
    font-size: 1.7em;
  }

  .page-registration-login-step-by-step__step-item {
    padding: 25px;
  }

  .page-registration-login-step-by-step__list,
  .page-registration-login-step-by-step__ordered-list {
    margin-left: 15px;
  }

  .page-registration-login-step-by-step__faq-question {
    font-size: 1.1em;
  }
}

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

  .page-registration-login-step-by-step__btn-primary,
  .page-registration-login-step-by-step__btn-secondary {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .page-registration-login-step-by-step__btn-secondary {
    margin-left: 0;
  }

  .page-registration-login-step-by-step__section-title {
    font-size: 1.8em;
  }

  .page-registration-login-step-by-step__step-title {
    font-size: 1.5em;
  }
}