/* style/registration-guide-step-by-step.css */
.page-registration-guide-step-by-step {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark background */
}

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

.page-registration-guide-step-by-step__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1A375D 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-registration-guide-step-by-step__title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-registration-guide-step-by-step__subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #CCCCCC;
}

.page-registration-guide-step-by-step__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA */
  color: #0A192F; /* 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;
}

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

.page-registration-guide-step-by-step__section {
  padding: 60px 0;
}

.page-registration-guide-step-by-step__section:nth-of-type(even) {
  background-color: #0F2038; /* Slightly lighter dark blue for alternating sections */
}

.page-registration-guide-step-by-step__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-registration-guide-step-by-step__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-step-by-step__content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #CCCCCC;
}

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

.page-registration-guide-step-by-step__feature-item {
  background-color: #1A375D; /* Darker blue for feature cards */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-registration-guide-step-by-step__feature-item h3 {
  color: #FFD700; /* Gold for feature titles */
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-registration-guide-step-by-step__feature-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-registration-guide-step-by-step__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-registration-guide-step-by-step__steps .page-registration-guide-step-by-step__content p {
  text-align: center;
}

.page-registration-guide-step-by-step__step-item {
  background-color: #0F2038;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-registration-guide-step-by-step__step-item p {
  font-size: 1.1em;
  color: #CCCCCC;
  margin-bottom: 15px;
}

.page-registration-guide-step-by-step__action-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-registration-guide-step-by-step__action-button:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-registration-guide-step-by-step__image-step {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-registration-guide-step-by-step__info-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #CCCCCC;
}

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

.page-registration-guide-step-by-step__info-list li strong {
  color: #FFD700;
}

.page-registration-guide-step-by-step__note {
  font-style: italic;
  color: #AAAAAA;
  font-size: 0.95em;
  text-align: center;
  margin-top: 20px;
}

.page-registration-guide-step-by-step__important-notes .page-registration-guide-step-by-step__bullet-list {
  list-style-type: decimal;
  margin-left: 25px;
  color: #CCCCCC;
}

.page-registration-guide-step-by-step__important-notes .page-registration-guide-step-by-step__bullet-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-registration-guide-step-by-step__important-notes .page-registration-guide-step-by-step__bullet-list li strong {
  color: #FFD700;
}

.page-registration-guide-step-by-step__action-list {
  list-style-type: '✅ ';
  margin-left: 25px;
  margin-bottom: 30px;
  color: #CCCCCC;
}

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

.page-registration-guide-step-by-step__buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-registration-guide-step-by-step__secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  border: 2px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-registration-guide-step-by-step__secondary-button:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-registration-guide-step-by-step__final-cta {
  text-align: center;
  padding-bottom: 80px;
}

.page-registration-guide-step-by-step__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

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

  .page-registration-guide-step-by-step__subtitle {
    font-size: 1.1em;
  }

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

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

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

  .page-registration-guide-step-by-step__cta-button,
  .page-registration-guide-step-by-step__secondary-button {
    width: 100%;
    box-sizing: border-box;
  }

  .page-registration-guide-step-by-step__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-registration-guide-step-by-step__hero {
    padding: 60px 0;
  }

  .page-registration-guide-step-by-step__title {
    font-size: 2em;
  }

  .page-registration-guide-step-by-step__subtitle {
    font-size: 1em;
  }

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

  .page-registration-guide-step-by-step__step-item {
    padding: 20px;
  }

  .page-registration-guide-step-by-step__info-list, 
  .page-registration-guide-step-by-step__bullet-list, 
  .page-registration-guide-step-by-step__action-list {
    margin-left: 15px;
  }
}