/* style/registration-guide-step-by-step.css */
.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__hero-section {
  background: linear-gradient(135deg, #003366 0%, #003366 70%, #FFCC00 100%); /* Dark blue fading to gold */
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-registration-guide-step-by-step__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-registration-guide-step-by-step__intro-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-registration-guide-step-by-step__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-registration-guide-step-by-step__btn--primary {
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark blue */
  border: 2px solid #FFCC00;
}

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

.page-registration-guide-step-by-step__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Gold */
  border: 2px solid #FFCC00;
  margin-top: 20px;
}

.page-registration-guide-step-by-step__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-registration-guide-step-by-step__btn--center {
  display: block;
  margin: 40px auto 20px auto;
  max-width: 300px;
  text-align: center;
}

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

.page-registration-guide-step-by-step__content-section,
.page-registration-guide-step-by-step__steps-section,
.page-registration-guide-step-by-step__mobile-section,
.page-registration-guide-step-by-step__faq-section,
.page-registration-guide-step-by-step__cta-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-registration-guide-step-by-step__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-registration-guide-step-by-by__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
}

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

.page-registration-guide-step-by-step__feature-item {
  text-align: center;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-registration-guide-step-by-step__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

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

.page-registration-guide-step-by-step__feature-description {
  color: #666;
  font-size: 1em;
}

.page-registration-guide-step-by-step__steps-section {
  background-color: #f0f4f8;
}

.page-registration-guide-step-by-step__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-registration-guide-step-by-step__step-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-registration-guide-step-by-step__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFCC00; /* Gold */
  margin-right: 30px;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #003366; /* Dark blue border */
  border-radius: 50%;
  background-color: #003366; /* Dark blue background */
  color: #FFCC00; /* Gold text */
}

.page-registration-guide-step-by-step__step-item:nth-child(even) .page-registration-guide-step-by-step__step-number {
  margin-left: 30px;
  margin-right: 0;
}

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

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

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

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

.page-registration-guide-step-by-step__step-content a:hover {
  color: #FFCC00;
}

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

.page-registration-guide-step-by-step__list li {
  margin-bottom: 8px;
}

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

.page-registration-guide-step-by-step__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-step-by-step__mobile-section {
  background-color: #e6eef5;
}

.page-registration-guide-step-by-step__mobile-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-registration-guide-step-by-step__mobile-step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 350px;
  flex: 1 1 300px;
}

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

.page-registration-guide-step-by-step__mobile-step-card p {
  color: #666;
  margin-bottom: 20px;
}

.page-registration-guide-step-by-step__mobile-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-registration-guide-step-by-step__mobile-image {
  display: block;
  max-width: 600px;
  margin: 50px auto 0 auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.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;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-registration-guide-step-by-step__faq-question {
  font-size: 1.6em;
  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: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFCC00;
  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.1em;
  color: #666;
  padding-left: 10px;
  margin-top: 10px;
  display: none; /* Hidden by default, toggled by JS */
}

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

.page-registration-guide-step-by-step__cta-section {
  text-align: center;
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
}

.page-registration-guide-step-by-step__cta-title {
  font-size: 2.8em;
  color: #FFCC00;
  margin-bottom: 20px;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-registration-guide-step-by-step__main-title {
    font-size: 2.5em;
  }
  .page-registration-guide-step-by-step__section-title {
    font-size: 2em;
  }
  .page-registration-guide-step-by-step__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-registration-guide-step-by-step__step-item:nth-child(even) {
    flex-direction: column;
  }
  .page-registration-guide-step-by-step__step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .page-registration-guide-step-by-step__step-item:nth-child(even) .page-registration-guide-step-by-step__step-number {
    margin-left: 0;
    margin-bottom: 20px;
  }
  .page-registration-guide-step-by-step__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-registration-guide-step-by-step__hero-section,
  .page-registration-guide-step-by-step__content-section,
  .page-registration-guide-step-by-step__steps-section,
  .page-registration-guide-step-by-step__mobile-section,
  .page-registration-guide-step-by-step__faq-section,
  .page-registration-guide-step-by-step__cta-section {
    padding: 40px 0;
  }
  .page-registration-guide-step-by-step__main-title {
    font-size: 2em;
  }
  .page-registration-guide-step-by-step__intro-text {
    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__feature-item,
  .page-registration-guide-step-by-step__mobile-step-card {
    padding: 20px;
  }
  .page-registration-guide-step-by-step__cta-title {
    font-size: 1.8em;
  }
  .page-registration-guide-step-by-step__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-registration-guide-step-by-step__main-title {
    font-size: 1.8em;
  }
  .page-registration-guide-step-by-step__section-title {
    font-size: 1.5em;
  }
  .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__features-grid {
    grid-template-columns: 1fr;
  }
  .page-registration-guide-step-by-step__step-number {
    font-size: 2.5em;
    width: 60px;
    height: 60px;
  }
  .page-registration-guide-step-by-step__faq-question {
    font-size: 1.4em;
  }
  .page-registration-guide-step-by-step__cta-title {
    font-size: 1.6em;
  }
}