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

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

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

.page-registration-guide-step-by-step__section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-registration-guide-step-by-step__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-registration-guide-step-by-step__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-registration-guide-step-by-step__section-description {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-registration-guide-step-by-step__hero-section {
  background: linear-gradient(135deg, #003366 0%, #0a4a8c 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-registration-guide-step-by-step__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-registration-guide-step-by-step__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-registration-guide-step-by-by-step__hero-button {
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-registration-guide-step-by-step__hero-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-registration-guide-step-by-step__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-registration-guide-step-by-step__why-join {
  background-color: #f0f4f7;
}

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

.page-registration-guide-step-by-step__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-guide-step-by-step__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-registration-guide-step-by-step__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-registration-guide-step-by-step__feature-item h3 {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-registration-guide-step-by-step__feature-item p {
  color: #666;
}

.page-registration-guide-step-by-step__guide {
  text-align: left;
}

.page-registration-guide-step-by-step__step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.page-registration-guide-step-by-step__step:last-child {
  margin-bottom: 0;
}

.page-registration-guide-step-by-step__step--reverse {
  flex-direction: row-reverse;
}

.page-registration-guide-step-by-step__step-content {
  flex: 1;
}

.page-registration-guide-step-by-step__step-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-registration-guide-step-by-step__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.page-registration-guide-step-by-step__step-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 20px;
}

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

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

.page-registration-guide-step-by-step__step-content ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFCC00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-8.83"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #333;
}

.page-registration-guide-step-by-step__step-content ul li strong {
  color: #003366;
}

.page-registration-guide-step-by-step__button {
  background-color: #FFCC00;
  color: #003366;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  margin-top: 15px;
}

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

.page-registration-guide-step-by-step__button--primary {
  background-color: #003366;
  color: #FFCC00;
}

.page-registration-guide-step-by-step__button--primary:hover {
  background-color: #002244;
  color: #fff;
}

.page-registration-guide-step-by-step__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 50px;
}

.page-registration-guide-step-by-step__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 20px;
}

.page-registration-guide-step-by-step__button--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

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

.page-registration-guide-step-by-step__link-inline:hover {
  color: #FFCC00;
}

.page-registration-guide-step-by-step__important-notes {
  background-color: #e6f0f5;
}

.page-registration-guide-step-by-step__checklist {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
}

.page-registration-guide-step-by-step__checklist li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23003366" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left 8px;
  background-size: 24px;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333;
  line-height: 1.5;
}

.page-registration-guide-step-by-step__checklist li strong {
  color: #003366;
}

.page-registration-guide-step-by-step__note {
  font-style: italic;
  color: #666;
  margin-top: 30px;
  font-size: 1em;
}

.page-registration-guide-step-by-step__promotions {
  background-color: #ffffff;
}

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

.page-registration-guide-step-by-step__promo-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-guide-step-by-step__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-step-by-step__promo-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-registration-guide-step-by-step__promo-card h3 {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-registration-guide-step-by-step__promo-card p {
  color: #555;
  margin-bottom: 25px;
}

.page-registration-guide-step-by-step__faq {
  background-color: #f0f4f7;
  text-align: left;
}

.page-registration-guide-step-by-step__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-registration-guide-step-by-step__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-registration-guide-step-by-step__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-registration-guide-step-by-step__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-registration-guide-step-by-step__faq-answer {
  font-size: 1.05em;
  color: #555;
  margin-top: 15px;
  display: none; /* Hidden by default */
}

.page-registration-guide-step-by-step__faq-answer.active {
  display: block;
}

.page-registration-guide-step-by-step__cta-section {
  background: linear-gradient(90deg, #003366 0%, #0a4a8c 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-registration-guide-step-by-step__cta-title {
  font-size: 3em;
  color: #FFCC00;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-registration-guide-step-by-step__cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-registration-guide-step-by-step__hero-title {
    font-size: 3em;
  }
  .page-registration-guide-step-by-step__hero-subtitle {
    font-size: 1.3em;
  }
  .page-registration-guide-step-by-step__step {
    flex-direction: column;
    text-align: center;
  }
  .page-registration-guide-step-by-step__step--reverse {
    flex-direction: column;
  }
  .page-registration-guide-step-by-step__step-image-wrapper {
    order: -1; /* Image above text for reversed steps */
    margin-bottom: 30px;
  }
  .page-registration-guide-step-by-step__step-title {
    font-size: 1.8em;
  }
  .page-registration-guide-step-by-step__checklist,
  .page-registration-guide-step-by-step__faq-item {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .page-registration-guide-step-by-step__section-title {
    font-size: 2em;
  }
  .page-registration-guide-step-by-step__hero-section {
    padding: 80px 0;
  }
  .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__features-grid,
  .page-registration-guide-step-by-step__promo-cards {
    grid-template-columns: 1fr;
  }
  .page-registration-guide-step-by-step__step-image-wrapper {
    margin-bottom: 20px;
  }
  .page-registration-guide-step-by-step__cta-title {
    font-size: 2.5em;
  }
  .page-registration-guide-step-by-step__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-registration-guide-step-by-step__hero-title {
    font-size: 2em;
  }
  .page-registration-guide-step-by-step__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-registration-guide-step-by-step__section-title {
    font-size: 1.8em;
  }
  .page-registration-guide-step-by-step__step-title {
    font-size: 1.5em;
  }
  .page-registration-guide-step-by-step__checklist li,
  .page-registration-guide-step-by-step__faq-item p {
    font-size: 0.95em;
  }
  .page-registration-guide-step-by-step__cta-title {
    font-size: 2em;
  }
  .page-registration-guide-step-by-step__cta-description {
    font-size: 1em;
  }
  .page-registration-guide-step-by-step__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}