/* style/registration-guide.css */
.page-registration-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1A2E44; /* Dark blue text for readability */
  background-color: #f9f9f9;
}

.page-registration-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-registration-guide__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a5c82 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-registration-guide__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 215, 0, 0.1); /* Gold accent */
  border-radius: 50%;
  filter: blur(80px);
}

.page-registration-guide__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 215, 0, 0.15); /* Gold accent */
  border-radius: 50%;
  filter: blur(60px);
}

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

.page-registration-guide__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-registration-guide__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__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2E44; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-registration-guide__btn--primary:hover {
  background-color: #e6c200; /* Darker gold */
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-registration-guide__btn--secondary {
  background-color: #1A2E44; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-registration-guide__btn--secondary:hover {
  background-color: #0d1a29; /* Darker blue */
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-registration-guide__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #1A2E44;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-registration-guide__btn--small:hover {
  background-color: #0d1a29;
  color: #e6c200;
  border-color: #e6c200;
}

.page-registration-guide__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-registration-guide__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-registration-guide__section:last-of-type {
  border-bottom: none;
}

.page-registration-guide__section-title {
  font-size: 2.5em;
  color: #1A2E44;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-registration-guide__section-description {
  font-size: 1.1em;
  color: #333;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-registration-guide__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background-color: #fcfcfc;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-registration-guide__step-icon {
  background-color: #FFD700;
  color: #1A2E44;
  font-size: 1.8em;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 30px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-registration-guide__step-content {
  flex-grow: 1;
}

.page-registration-guide__step-title {
  font-size: 1.8em;
  color: #1A2E44;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-registration-guide__step-content p {
  color: #444;
  margin-bottom: 15px;
}

.page-registration-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444;
}

.page-registration-guide__list li {
  margin-bottom: 8px;
}

.page-registration-guide__list li strong {
  color: #1A2E44;
}

.page-registration-guide__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__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

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

.page-registration-guide__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.page-registration-guide__benefit-title {
  font-size: 1.5em;
  color: #1A2E44;
  margin-bottom: 15px;
}

.page-registration-guide__benefit-item p {
  color: #555;
}

.page-registration-guide__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-registration-guide__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-registration-guide__faq-item {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-registration-guide__faq-question {
  font-size: 1.3em;
  color: #1A2E44;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-registration-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-registration-guide__faq-answer {
  padding: 0 25px 20px 25px;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-registration-guide__faq-question.active + .page-registration-guide__faq-answer {
  max-height: 200px; /* Adjust based on expected content height */
  padding-top: 10px;
}

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

.page-registration-guide__related-item {
  background-color: #fcfcfc;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

.page-registration-guide__related-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #1A2E44;
}

.page-registration-guide__related-title a {
  text-decoration: none;
  color: #1A2E44;
  transition: color 0.3s ease;
}

.page-registration-guide__related-title a:hover {
  color: #FFD700;
}

.page-registration-guide__related-description {
  color: #555;
  margin-bottom: 20px;
}

.page-registration-guide__section--final-cta {
  background-color: #1A2E44;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-registration-guide__section--final-cta .page-registration-guide__section-title {
  color: #FFD700;
}

.page-registration-guide__section--final-cta .page-registration-guide__section-title::after {
  background-color: #FFD700;
}

.page-registration-guide__section--final-cta .page-registration-guide__section-description {
  color: #e0e0e0;
}

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

  .page-registration-guide__hero-subtitle {
    font-size: 1.1em;
  }

  .page-registration-guide__section-title {
    font-size: 2em;
  }

  .page-registration-guide__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-registration-guide__step-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .page-registration-guide__list {
    text-align: left;
  }

  .page-registration-guide__benefit-grid {
    grid-template-columns: 1fr;
  }

  .page-registration-guide__related-list {
    grid-template-columns: 1fr;
  }
}

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

  .page-registration-guide__hero-subtitle {
    font-size: 1em;
  }

  .page-registration-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-registration-guide__section-title {
    font-size: 1.8em;
  }

  .page-registration-guide__section-description {
    font-size: 1em;
  }

  .page-registration-guide__step-title {
    font-size: 1.5em;
  }

  .page-registration-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-registration-guide__faq-question::after {
    right: 20px;
  }
}