.page-registration-guide-step-by-step {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.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, #1A237E, #FFC107);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-step-by-step__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-registration-guide-step-by-step__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-registration-guide-step-by-step__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-registration-guide-step-by-step__button--primary {
  background-color: #FFC107;
  color: #1A237E;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-step-by-step__button--primary:hover {
  background-color: #e6b000;
  transform: translateY(-2px);
}

.page-registration-guide-step-by-step__button--secondary {
  background-color: #1A237E;
  color: #FFC107;
  border: 2px solid #FFC107;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-step-by-step__button--secondary:hover {
  background-color: #0d1254;
  border-color: #e6b000;
  transform: translateY(-2px);
}

.page-registration-guide-step-by-step__button--tertiary {
  background-color: transparent;
  color: #1A237E;
  border: 2px solid #1A237E;
}

.page-registration-guide-step-by-step__button--tertiary:hover {
  background-color: #1A237E;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-registration-guide-step-by-step__content {
  padding: 50px 0;
}

.page-registration-guide-step-by-step__article {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-registration-guide-step-by-step__section-title {
  font-size: 2em;
  color: #1A237E;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFC107;
  padding-bottom: 10px;
}

.page-registration-guide-step-by-step__step-title {
  font-size: 1.6em;
  color: #1A237E;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-registration-guide-step-by-step p {
  margin-bottom: 15px;
  color: #444;
}

.page-registration-guide-step-by-step strong {
  color: #1A237E;
}

.page-registration-guide-step-by-step__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-registration-guide-step-by-step__list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #444;
}

.page-registration-guide-step-by-step__list li::before {
  content: '✔';
  color: #FFC107;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-registration-guide-step-by-step__list--checklist li::before {
  content: '✅';
  color: #FFC107;
}

.page-registration-guide-step-by-step__list--benefits li::before {
  content: '⭐';
  color: #FFC107;
}

.page-registration-guide-step-by-step__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-registration-guide-step-by-step__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-step-by-step__image-caption {
  font-style: italic;
  color: #777;
  margin-top: 10px;
  font-size: 0.9em;
}

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

.page-registration-guide-step-by-step__cta-section {
  background-color: #f0f2f5;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  border: 1px dashed #FFC107;
}

.page-registration-guide-step-by-step__cta-title {
  font-size: 2.2em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-registration-guide-step-by-step__cta-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
}

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

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

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

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

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

  .page-registration-guide-step-by-step__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-registration-guide-step-by-step__button {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .page-registration-guide-step-by-step__title {
    font-size: 1.8em;
  }

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

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

  .page-registration-guide-step-by-step__content {
    padding: 30px 0;
  }

  .page-registration-guide-step-by-step__cta-section {
    padding: 20px;
  }

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