/* style/registration-guide-step-by-step.css */
.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, #0A2463 0%, #2C5282 100%); /* Darker blue to slightly lighter blue */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
}

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

.page-registration-guide-step-by-step__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-registration-guide-step-by-step__cta-button--secondary {
  background-color: #0A2463;
  color: #E3B505;
  border: 2px solid #E3B505;
  margin-left: 20px;
}

.page-registration-guide-step-by-step__cta-button--secondary:hover {
  background-color: #1A3A73;
  border-color: #FFD700;
}

.page-registration-guide-step-by-step__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
}

.page-registration-guide-step-by-step__content-section,
.page-registration-guide-step-by-step__guide-section,
.page-registration-guide-step-by-step__tips-section,
.page-registration-guide-step-by-step__faq-section,
.page-registration-guide-step-by-step__cta-bottom {
  padding: 60px 0;
}

.page-registration-guide-step-by-step__heading {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-registration-guide-step-by-step__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E3B505;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-registration-guide-step-by-step__sub-heading {
  font-size: 1.8em;
  color: #0A2463;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-registration-guide-step-by-by-step__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-registration-guide-step-by-step__inline-link {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-registration-guide-step-by-step__inline-link:hover {
  color: #E3B505;
}

.page-registration-guide-step-by-step__features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-registration-guide-step-by-step__features-list li {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #333;
  display: flex;
  align-items: center;
}

.page-registration-guide-step-by-step__icon {
  color: #E3B505;
  font-size: 1.5em;
  margin-right: 15px;
}

.page-registration-guide-step-by-step__guide-section {
  background-color: #F0F2F5;
}

.page-registration-guide-step-by-step__step-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-registration-guide-step-by-step__step-title::before {
    content: attr(data-step-number);
    display: block;
    font-size: 0.6em;
    font-weight: bold;
    color: #E3B505;
    margin-bottom: 5px;
}

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

.page-registration-guide-step-by-step__action-button {
  display: inline-block;
  background-color: #0A2463;
  color: #E3B505;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

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

.page-registration-guide-step-by-step__info-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  width: 100%;
  max-width: 600px;
}

.page-registration-guide-step-by-step__info-list li {
  background-color: #F8F9FA;
  padding: 10px 15px;
  border-left: 4px solid #E3B505;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 1em;
}

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

.page-registration-guide-step-by-step__faq-section {
  background-color: #FFFFFF;
}

.page-registration-guide-step-by-step__faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid #EEE;
  padding-bottom: 20px;
}

.page-registration-guide-step-by-step__faq-item:last-child {
  border-bottom: none;
}

.page-registration-guide-step-by-step__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-registration-guide-step-by-step__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #E3B505;
    margin-left: 10px;
    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: #555;
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-registration-guide-step-by-step__faq-answer.active {
  max-height: 150px; /* Adjust based on content */
  padding-top: 10px;
}

.page-registration-guide-step-by-step__tips-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-registration-guide-step-by-step__tips-list li {
  background-color: #FFFFFF;
  padding: 15px 20px;
  border-left: 5px solid #E3B505;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #333;
}

.page-registration-guide-step-by-step__cta-bottom {
  background-color: #0A2463;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-registration-guide-step-by-step__cta-bottom .page-registration-guide-step-by-step__heading {
  color: #E3B505;
}

.page-registration-guide-step-by-step__cta-bottom .page-registration-guide-step-by-step__heading::after {
    background-color: #FFFFFF;
}

.page-registration-guide-step-by-step__cta-bottom .page-registration-guide-step-by-step__paragraph {
  color: #E0E0E0;
  margin-bottom: 40px;
}

/* Responsive Design */
@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__heading {
    font-size: 2em;
  }

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

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

  .page-registration-guide-step-by-step__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

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

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

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

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

  .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__action-button {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .page-registration-guide-step-by-step__cta-button--secondary {
      margin-top: 0;
  }
}