.page-registration-guide-step-by-step {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for text on dark background */
  background-color: #0d1246; /* A slightly lighter dark blue for overall background */
}

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

.page-registration-guide-step-by-step .hero-section {
  background: linear-gradient(135deg, #1A237E, #3b42a8); /* Dark blue to a slightly lighter blue */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
}

.page-registration-guide-step-by-step .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-registration-guide-step-by-by .hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFD700; /* Gold */
}

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

.page-registration-guide-step-by-step .btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1A237E; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-registration-guide-step-by-step .btn-primary:hover {
  background-color: #e6c200; /* Darker gold */
  transform: translateY(-2px);
}

.page-registration-guide-step-by-step .btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-registration-guide-step-by-step .btn-secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-2px);
}

.page-registration-guide-step-by-step .btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-registration-guide-step-by-step .registration-steps-section,
.page-registration-guide-step-by-step .tips-section,
.page-registration-guide-step-by-step .faq-section,
.page-registration-guide-step-by-step .cta-section {
  padding: 60px 0;
  background-color: #1A237E; /* Main dark blue for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-registration-guide-step-by-step .section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-registration-guide-step-by-step .section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-registration-guide-step-by-step .step-item {
  background-color: #2a318e; /* Slightly lighter blue for step cards */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-step-by-step .step-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-registration-guide-step-by-step .step-item p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

.page-registration-guide-step-by-step .step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #FFD700;
}

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

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

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

.page-registration-guide-step-by-step .tips-list {
  list-style-type: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-registration-guide-step-by-step .tips-list li {
  background-color: #2a318e;
  color: #E0E0E0;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1.1em;
  flex: 1 1 calc(33% - 40px); /* 3 items per row on desktop */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border-left: 5px solid #FFD700;
  text-align: left;
}

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

.page-registration-guide-step-by-step .faq-item {
  background-color: #2a318e;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-registration-guide-step-by-step .faq-question {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-registration-guide-step-by-step .faq-question::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

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

.page-registration-guide-step-by-step .cta-section {
  text-align: center;
  background: linear-gradient(135deg, #FFD700, #e6c200); /* Gold gradient */
  padding: 80px 0;
}

.page-registration-guide-step-by-step .cta-title {
  font-size: 3em;
  color: #1A237E; /* Dark blue */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-registration-guide-step-by-step .cta-description {
  font-size: 1.2em;
  color: #1A237E; /* Dark blue */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

  .page-registration-guide-step-by-step .tips-list li {
    flex: 1 1 calc(50% - 20px); /* 2 items per row on tablet */
  }

  .page-registration-guide-step-by-step .cta-title {
    font-size: 2.5em;
  }
}

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

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

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

  .page-registration-guide-step-by-step .btn-large {
    padding: 15px 25px;
    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.3em;
  }

  .page-registration-guide-step-by-step .tips-list li {
    flex: 1 1 100%; /* 1 item per row on mobile */
  }

  .page-registration-guide-step-by-step .cta-title {
    font-size: 2em;
  }
  .page-registration-guide-step-by-step .faq-question {
    font-size: 1.2em;
  }
}