.page-registration-guide-step-by-step {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  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-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-registration-guide-step-by-step__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-registration-guide-step-by-step__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-registration-guide-step-by-step__primary-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color */
  color: #000000; /* High contrast text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-registration-guide-step-by-step__primary-button--small-margin {
  margin-top: 30px;
}

.page-registration-guide-step-by-step__secondary-button {
  display: inline-block;
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #007bff;
  cursor: pointer;
  margin-top: 20px;
}

.page-registration-guide-step-by-step__secondary-button:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

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

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

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

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

.page-registration-guide-step-by-step__step-block {
  margin-bottom: 40px;
  padding: 25px;
  background-color: #f0f8ff; /* Light blue background for steps */
  border-left: 5px solid #007bff;
  border-radius: 8px;
}

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

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

.page-registration-guide-step-by-step__image--full-width {
  margin-left: -40px;
  margin-right: -40px;
  width: calc(100% + 80px);
  max-width: calc(100% + 80px);
  border-radius: 0;
}

.page-registration-guide-step-by-step__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444;
}

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

.page-registration-guide-step-by-step__conclusion-text {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  color: #007bff;
}

.page-registration-guide-step-by-step__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

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

  .page-registration-guide-step-by-step__hero-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__image--full-width {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
  }
  
  .page-registration-guide-step-by-step__cta-buttons {
    flex-direction: column;
  }
  
  .page-registration-guide-step-by-step__primary-button,
  .page-registration-guide-step-by-step__secondary-button {
    width: 100%;
  }
}

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

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

  .page-registration-guide-step-by-step__primary-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-registration-guide-step-by-step__secondary-button {
    padding: 10px 18px;
    font-size: 0.9em;
  }

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

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