:root {
  --primary-color: #007bff;
  --secondary-color: #28a745;
  --text-color-dark: #333;
  --text-color-light: #fff;
  --background-light: #f8f9fa;
  --background-dark: #0056b3;
}

.page-beginner-guide-how-to-register {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-light);
}

.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, var(--primary-color), var(--secondary-color));
  color: var(--text-color-light);
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.page-beginner-guide-how-to-register__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color-light);
  font-weight: bold;
}

.page-beginner-guide-how-to-register__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

.page-beginner-guide-how-to-register__cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-color-light);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-beginner-guide-how-to-register__cta-button:hover {
  background-color: #218838; /* Darker shade of secondary color */
  transform: translateY(-2px);
}

.page-beginner-guide-how-to-register__cta-button--primary {
  background-color: var(--primary-color);
}

.page-beginner-guide-how-to-register__cta-button--primary:hover {
  background-color: #0056b3; /* Darker shade of primary color */
}

.page-beginner-guide-how-to-register__cta-button--secondary {
  background-color: var(--secondary-color);
}

.page-beginner-guide-how-to-register__cta-button--secondary:hover {
  background-color: #218838; /* Darker shade of secondary color */
}

.page-beginner-guide-how-to-register__content-section,
.page-beginner-guide-how-to-register__step-by-step-section,
.page-beginner-guide-how-to-register__tips-section,
.page-beginner-guide-how-to-register__faq-section,
.page-beginner-guide-how-to-register__cta-bottom {
  padding: 60px 0;
}

.page-beginner-guide-how-to-register__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  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: var(--secondary-color);
  border-radius: 2px;
}

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

.page-beginner-guide-how-to-register__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-beginner-guide-how-to-register__feature-list,
.page-beginner-guide-how-to-register__tip-list,
.page-beginner-guide-how-to-register__info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-beginner-guide-how-to-register__feature-list li,
.page-beginner-guide-how-to-register__tip-list li,
.page-beginner-guide-how-to-register__info-list li {
  background-color: var(--text-color-light);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-left: 5px solid var(--primary-color);
}

.page-beginner-guide-how-to-register__feature-list li:hover,
.page-beginner-guide-how-to-register__tip-list li:hover,
.page-beginner-guide-how-to-register__info-list li:hover {
  transform: translateY(-5px);
}

.page-beginner-guide-how-to-register__list-item-title {
  color: var(--primary-color);
  font-size: 1.15em;
  margin-bottom: 10px;
  display: block;
}

.page-beginner-guide-how-to-register__step-item {
  background-color: var(--text-color-light);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-beginner-guide-how-to-register__step-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.page-beginner-guide-how-to-register__step-button {
  margin-top: 20px;
  background-color: var(--secondary-color);
  color: var(--text-color-light);
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-beginner-guide-how-to-register__step-button:hover {
  background-color: #218838;
}

.page-beginner-guide-how-to-register__note {
  font-style: italic;
  color: #666;
  margin-top: 20px;
}

.page-beginner-guide-how-to-register__image-full-width {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-how-to-register__faq-section {
  background-color: var(--background-light);
}

.page-beginner-guide-how-to-register__faq-item {
  background-color: var(--text-color-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-how-to-register__faq-question {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-beginner-guide-how-to-register__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-beginner-guide-how-to-register__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-beginner-guide-how-to-register__faq-answer {
  font-size: 1.05em;
  color: #555;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
  display: none;
}

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

.page-beginner-guide-how-to-register__cta-bottom {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  text-align: center;
  padding: 80px 0;
}

.page-beginner-guide-how-to-register__cta-bottom .page-beginner-guide-how-to-register__section-title {
  color: var(--text-color-light);
}

.page-beginner-guide-how-to-register__cta-bottom .page-beginner-guide-how-to-register__section-title::after {
  background-color: var(--secondary-color);
}

.page-beginner-guide-how-to-register__cta-bottom .page-beginner-guide-how-to-register__paragraph {
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-color-light);
}

.page-beginner-guide-how-to-register__small-text {
  font-size: 0.9em;
  margin-top: 20px;
  opacity: 0.8;
  color: var(--text-color-light);
}

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

  .page-beginner-guide-how-to-register__hero-subtitle {
    font-size: 1em;
  }

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

  .page-beginner-guide-how-to-register__feature-list,
  .page-beginner-guide-how-to-register__tip-list,
  .page-beginner-guide-how-to-register__info-list {
    grid-template-columns: 1fr;
  }

  .page-beginner-guide-how-to-register__step-item {
    padding: 20px;
  }

  .page-beginner-guide-how-to-register__step-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-how-to-register__faq-question {
    font-size: 1.1em;
  }

  .page-beginner-guide-how-to-register__content-section,
  .page-beginner-guide-how-to-register__step-by-step-section,
  .page-beginner-guide-how-to-register__tips-section,
  .page-beginner-guide-how-to-register__faq-section,
  .page-beginner-guide-how-to-register__cta-bottom {
    padding: 40px 0;
  }
}

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

  .page-beginner-guide-how-to-register__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-beginner-guide-how-to-register__section-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-how-to-register__paragraph {
    font-size: 0.95em;
  }
}