.page-registration-login-how-to-register {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-registration-login-how-to-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-registration-login-how-to-register__hero-section {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-registration-login-how-to-register__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_geometric_pattern,blue_gold_gradient,subtle_texture]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-registration-login-how-to-register__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.page-registration-login-how-to-register__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-how-to-register__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

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

.page-registration-login-how-to-register__content-section,
.page-registration-login-how-to-register__steps-section,
.page-registration-login-how-to-register__tips-section,
.page-registration-login-how-to-register__next-steps-section,
.page-registration-login-how-to-register__faq-section,
.page-registration-login-how-to-register__cta-bottom-section {
  padding: 60px 0;
}

.page-registration-login-how-to-register__content-section {
  background-color: #fff;
}

.page-registration-login-how-to-register__steps-section {
  background-color: #e9ecef;
}

.page-registration-login-how-to-register__tips-section {
  background-color: #fff;
}

.page-registration-login-how-to-register__next-steps-section {
  background-color: #e9ecef;
}

.page-registration-login-how-to-register__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-registration-login-how-to-register__highlight {
  color: #007BFF;
  font-weight: bold;
}

.page-registration-login-how-to-register__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-registration-login-how-to-register__list li {
  background-color: #f2f2f2;
  border-left: 5px solid #007BFF;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-registration-login-how-to-register__list-title {
  color: #007BFF;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-registration-login-how-to-register__sub-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-registration-login-how-to-register__sub-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-registration-login-how-to-register__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-registration-login-how-to-register__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid #007BFF;
}

.page-registration-login-how-to-register__image-caption {
  font-style: italic;
  color: #555;
  margin-top: 15px;
  font-size: 0.95em;
}

.page-registration-login-how-to-register__step-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-top: 6px solid #FFD700;
}

.page-registration-login-how-to-register__step-title {
  color: #007BFF;
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.page-registration-login-how-to-register__step-title::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: #007BFF;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-registration-login-how-to-register__steps-section .page-registration-login-how-to-register__container {
  counter-reset: step-counter;
}

.page-registration-login-how-to-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  margin-top: 20px;
}

.page-registration-login-how-to-register__cta-button--primary {
  background-color: #FFD700;
  color: #0056b3; /* Darker blue for contrast */
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-registration-login-how-to-register__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-registration-login-how-to-register__cta-button--secondary {
  background-color: #007BFF;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-registration-login-how-to-register__cta-button--secondary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
}

.page-registration-login-how-to-register__cta-button--tertiary {
  background-color: #f0f0f0;
  color: #007BFF;
  border: 2px solid #007BFF;
  padding: 12px 25px;
  font-size: 1em;
  box-shadow: none;
}

.page-registration-login-how-to-register__cta-button--tertiary:hover {
  background-color: #007BFF;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.page-registration-login-how-to-register__cta-bottom-section {
  background-color: #007BFF;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-registration-login-how-to-register__cta-bottom-section .page-registration-login-how-to-register__section-title {
  color: #FFD700;
}

.page-registration-login-how-to-register__cta-bottom-section .page-registration-login-how-to-register__paragraph {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  font-size: 1.2em;
}

.page-registration-login-how-to-register__faq-section {
  background-color: #f8f9fa;
}

.page-registration-login-how-to-register__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-registration-login-how-to-register__faq-question {
  color: #007BFF;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-registration-login-how-to-register__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-registration-login-how-to-register__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-registration-login-how-to-register__faq-answer {
  font-size: 1.05em;
  color: #555;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
}

.page-registration-login-how-to-register__faq-answer.show {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-registration-login-how-to-register__floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: page-registration-login-how-to-register-pulse 2s infinite;
}

.page-registration-login-how-to-register__floating-cta-button {
  background-color: #FFD700;
  color: #0056b3; /* Darker blue for contrast */
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
}

.page-registration-login-how-to-register__floating-cta-button:hover {
  background-color: #e6c200;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.7);
}

.page-registration-login-how-to-register__floating-cta-text {
  margin-right: 10px;
}

.page-registration-login-how-to-register__floating-cta-icon {
  font-size: 1.5em;
  line-height: 1;
}

@keyframes page-registration-login-how-to-register-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-registration-login-how-to-register__hero-title {
    font-size: 2.5em;
  }
  .page-registration-login-how-to-register__section-title {
    font-size: 2em;
  }
  .page-registration-login-how-to-register__list-title {
    font-size: 1.3em;
  }
  .page-registration-login-how-to-register__step-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-registration-login-how-to-register__hero-title {
    font-size: 2em;
  }
  .page-registration-login-how-to-register__hero-description {
    font-size: 1em;
  }
  .page-registration-login-how-to-register__section-title {
    font-size: 1.8em;
  }
  .page-registration-login-how-to-register__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-registration-login-how-to-register__step-card {
    padding: 20px;
  }
  .page-registration-login-how-to-register__step-title {
    font-size: 1.3em;
  }
  .page-registration-login-how-to-register__step-title::before {
    width: 35px;
    height: 35px;
    font-size: 1em;
    margin-right: 10px;
  }
  .page-registration-login-how-to-register__floating-cta {
    bottom: 15px;
    right: 15px;
  }
  .page-registration-login-how-to-register__floating-cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-registration-login-how-to-register__floating-cta-icon {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-registration-login-how-to-register__hero-title {
    font-size: 1.8em;
  }
  .page-registration-login-how-to-register__hero-description {
    font-size: 0.9em;
  }
  .page-registration-login-how-to-register__section-title {
    font-size: 1.5em;
  }
  .page-registration-login-how-to-register__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-registration-login-how-to-register__list li {
    padding: 15px;
  }
  .page-registration-login-how-to-register__list-title {
    font-size: 1.1em;
  }
  .page-registration-login-how-to-register__step-title {
    font-size: 1.1em;
  }
  .page-registration-login-how-to-register__floating-cta {
    bottom: 10px;
    right: 10px;
  }
  .page-registration-login-how-to-register__floating-cta-button {
    padding: 10px 15px;
    font-size: 0.9em;
  }
}