/* style/beginner-guide-registration-process.css */
.page-beginner-guide-registration-process {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #0d0d0d; /* Very dark background */
  line-height: 1.6;
}

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

.page-beginner-guide-registration-process__hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #1E90FF 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-beginner-guide-registration-process__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-beginner-guide-registration-process__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-beginner-guide-registration-process__hero-subtitle {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 40px;
}

.page-beginner-guide-registration-process__hero-image-wrapper {
  max-width: 90%;
  margin-top: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-registration-process__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-beginner-guide-registration-process__section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark for sections */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-beginner-guide-registration-process__section:last-of-type {
  border-bottom: none;
}

.page-beginner-guide-registration-process__section--why-join {
  background-color: #0d0d0d;
}

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

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

.page-beginner-guide-registration-process__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-beginner-guide-registration-process__feature-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-beginner-guide-registration-process__feature-item:hover {
  transform: translateY(-5px);
}

.page-beginner-guide-registration-process__feature-title {
  font-size: 1.6em;
  color: #1E90FF; /* Blue feature title */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide-registration-process__feature-item p {
  color: #f0f0f0;
  font-size: 1em;
}

.page-beginner-guide-registration-process__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-registration-process__step-by-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-beginner-guide-registration-process__step-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-beginner-guide-registration-process__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700; /* Gold step number */
  color: #0d0d0d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-beginner-guide-registration-process__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold step title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-beginner-guide-registration-process__step-item p, 
.page-beginner-guide-registration-process__step-item ul {
  color: #f0f0f0;
  font-size: 1em;
  text-align: left;
  width: 100%;
  max-width: 600px;
}

.page-beginner-guide-registration-process__step-item ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
}

.page-beginner-guide-registration-process__step-item ul strong {
  color: #FFD700;
}

.page-beginner-guide-registration-process__step-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-registration-process__list {
  list-style-type: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 900px;
}

.page-beginner-guide-registration-process__list li {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #f0f0f0;
  border-left: 5px solid #1E90FF; /* Blue accent */
}

.page-beginner-guide-registration-process__list li strong {
  color: #FFD700;
}

.page-beginner-guide-registration-process__next-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-beginner-guide-registration-process__next-step-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-beginner-guide-registration-process__next-step-title {
  font-size: 1.5em;
  color: #1E90FF; /* Blue title */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide-registration-process__next-step-item p {
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-beginner-guide-registration-process__faq-item {
  background-color: #2a2a2a;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-registration-process__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold question */
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  padding-right: 30px;
}

.page-beginner-guide-registration-process__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #1E90FF;
  transition: transform 0.3s ease;
}

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

.page-beginner-guide-registration-process__faq-answer {
  font-size: 1.05em;
  color: #ccc;
  margin-top: 15px;
  display: none; /* Hidden by default, JS will toggle */
}

.page-beginner-guide-registration-process__faq-answer.active {
  display: block;
}

.page-beginner-guide-registration-process__cta {
  background-color: #1E90FF; /* Blue CTA background */
  padding: 60px 20px;
  text-align: center;
  border-radius: 15px;
  margin: 60px auto;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-registration-process__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold CTA title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-beginner-guide-registration-process__cta-description {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-beginner-guide-registration-process__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0d0d0d; /* Dark text on gold */
}

.page-beginner-guide-registration-process__btn--primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-beginner-guide-registration-process__btn--secondary {
  background-color: #1E90FF; /* Blue button */
  color: #ffffff; /* White text on blue */
  border: 2px solid #1E90FF;
}

.page-beginner-guide-registration-process__btn--secondary:hover {
  background-color: #1565b3; /* Darker blue on hover */
  border-color: #1565b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.4);
}

.page-beginner-guide-registration-process__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 20px;
  background-color: #FFD700;
  color: #0d0d0d;
}

.page-beginner-guide-registration-process__btn--small:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-beginner-guide-registration-process__hero-title {
    font-size: 2.8em;
  }
  .page-beginner-guide-registration-process__section-title,
  .page-beginner-guide-registration-process__cta-title {
    font-size: 2em;
  }
  .page-beginner-guide-registration-process__hero {
    padding: 60px 0;
  }
  .page-beginner-guide-registration-process__section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-registration-process__hero-title {
    font-size: 2.2em;
  }
  .page-beginner-guide-registration-process__hero-subtitle {
    font-size: 1.1em;
  }
  .page-beginner-guide-registration-process__section-title,
  .page-beginner-guide-registration-process__cta-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-registration-process__feature-title,
  .page-beginner-guide-registration-process__step-title,
  .page-beginner-guide-registration-process__next-step-title {
    font-size: 1.4em;
  }
  .page-beginner-guide-registration-process__features-grid,
  .page-beginner-guide-registration-process__next-steps-grid {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide-registration-process__hero {
    padding: 40px 0;
  }
  .page-beginner-guide-registration-process__section {
    padding: 30px 0;
  }
  .page-beginner-guide-registration-process__cta {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-registration-process__hero-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-registration-process__hero-subtitle {
    font-size: 1em;
  }
  .page-beginner-guide-registration-process__section-title,
  .page-beginner-guide-registration-process__cta-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-registration-process__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-beginner-guide-registration-process__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-beginner-guide-registration-process__faq-question {
    font-size: 1.2em;
  }
  .page-beginner-guide-registration-process__cta-description {
    font-size: 1em;
  }
}