.page-beginner-guide-how-to-register {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #1A202C; /* Main dark background */
}

.page-beginner-guide-how-to-register .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-beginner-guide-how-to-register .hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a6e 100%); /* Dark gradient for hero */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-beginner-guide-how-to-register .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
}

.page-beginner-guide-how-to-register .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-how-to-register .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  font-size: 1.1em;
}

.page-beginner-guide-how-to-register .btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-beginner-guide-how-to-register .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-beginner-guide-how-to-register .btn-secondary {
  background-color: #1A202C; /* Dark button */
  color: #FFD700; /* Gold text on dark */
  border: 2px solid #FFD700;
}

.page-beginner-guide-how-to-register .btn-secondary:hover {
  background-color: #333d4e;
  transform: translateY(-2px);
}

.page-beginner-guide-how-to-register .content-section {
  padding: 60px 0;
}

.page-beginner-guide-how-to-register .section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-beginner-guide-how-to-register p {
  margin-bottom: 20px;
  font-size: 1.1em;
  text-align: justify;
}

.page-beginner-guide-how-to-register h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-beginner-guide-how-to-register h4 {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-beginner-guide-how-to-register ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-beginner-guide-how-to-register ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-beginner-guide-how-to-register .step-card {
  background-color: #2a3342; /* Slightly lighter dark background for cards */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-beginner-guide-how-to-register .step-card .step-title {
  color: #FFD700;
  font-size: 2em;
  margin-bottom: 20px;
}

.page-beginner-guide-how-to-register .step-card .step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-how-to-register .highlight-text {
  color: #FFD700;
  font-weight: bold;
}

.page-beginner-guide-how-to-register a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-beginner-guide-how-to-register a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-beginner-guide-how-to-register .faq-item {
  background-color: #2a3342;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #333d4e;
}

.page-beginner-guide-how-to-register .faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-beginner-guide-how-to-register .faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
}

.page-beginner-guide-how-to-register .faq-question.active::after {
  content: '-';
}

.page-beginner-guide-how-to-register .faq-answer {
  font-size: 1.05em;
  color: #CCCCCC;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #333d4e;
  margin-top: 10px;
}

.page-beginner-guide-how-to-register .faq-answer.active {
  display: block;
}

.page-beginner-guide-how-to-register .call-to-action {
  text-align: center;
  padding: 50px 20px;
  background-color: #2a3342;
  border-radius: 10px;
  margin-top: 50px;
  border: 2px dashed #FFD700;
}

.page-beginner-guide-how-to-register .call-to-action p {
  font-size: 1.4em;
  color: #FFFFFF;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-beginner-guide-how-to-register .hero-title {
    font-size: 2.5em;
  }

  .page-beginner-guide-how-to-register .hero-subtitle,
  .page-beginner-guide-how-to-register p,
  .page-beginner-guide-how-to-register ul li,
  .page-beginner-guide-how-to-register .faq-answer {
    font-size: 1em;
  }

  .page-beginner-guide-how-to-register .section-title {
    font-size: 2em;
  }

  .page-beginner-guide-how-to-register h3 {
    font-size: 1.5em;
  }

  .page-beginner-guide-how-to-register .btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-beginner-guide-how-to-register .step-card,
  .page-beginner-guide-how-to-register .faq-item {
    padding: 20px;
  }

  .page-beginner-guide-how-to-register .call-to-action p {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-how-to-register .hero-title {
    font-size: 2em;
  }

  .page-beginner-guide-how-to-register .section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-how-to-register h3 {
    font-size: 1.3em;
  }

  .page-beginner-guide-how-to-register .btn {
    display: block;
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}