.page-beginner-guide-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-beginner-guide-faq__hero-section {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-faq__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.2), transparent 70%);
  pointer-events: none;
}

.page-beginner-guide-faq__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-faq__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-beginner-faq__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0056b3;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-faq__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-beginner-guide-faq__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  position: relative;
}

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

.page-beginner-guide-faq__faq-list {
  padding: 60px 0;
}

.page-beginner-guide-faq__accordion {
  margin-top: 30px;
}

.page-beginner-guide-faq__accordion-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-beginner-guide-faq__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 25px 30px;
  background-color: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bold;
  color: #007BFF;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-beginner-guide-faq__accordion-header:hover {
  background-color: #f0f8ff;
}

.page-beginner-guide-faq__accordion-header h3 {
  margin: 0;
  flex-grow: 1;
  color: #007BFF;
}

.page-beginner-guide-faq__question-number {
  color: #FFD700;
  margin-right: 10px;
  font-size: 1.1em;
}

.page-beginner-guide-faq__accordion-icon {
  font-size: 2em;
  font-weight: normal;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-beginner-guide-faq__accordion-header.active .page-beginner-guide-faq__accordion-icon {
  transform: rotate(45deg);
}

.page-beginner-guide-faq__accordion-content {
  padding: 0 30px 25px 30px;
  background-color: #fcfdff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-beginner-guide-faq__accordion-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #555;
}

.page-beginner-guide-faq__accordion-content p:last-child {
  margin-bottom: 0;
}

.page-beginner-guide-faq__inline-link {
  color: #007BFF;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-beginner-guide-faq__inline-link:hover {
  color: #0056b3;
}

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

.page-beginner-guide-faq__image--small {
  max-width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-faq__image--large {
  max-width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-faq__cta-section {
  background-color: #007BFF;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-faq__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(255, 215, 0, 0.2), transparent 70%);
  pointer-events: none;
}

.page-beginner-guide-faq__cta-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-beginner-guide-faq__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-beginner-guide-faq__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-beginner-guide-faq__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0056b3;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-faq__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

.page-beginner-guide-faq__image--cta {
  flex: 1;
  min-width: 250px;
  max-width: 450px;
  object-fit: contain;
  box-shadow: none;
}

.page-beginner-guide-faq__highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide-faq__hero-title {
    font-size: 2.8em;
  }
  .page-beginner-guide-faq__section-title {
    font-size: 2em;
  }
  .page-beginner-guide-faq__accordion-header {
    font-size: 1.2em;
    padding: 20px 25px;
  }
  .page-beginner-guide-faq__accordion-content {
    padding: 0 25px 20px 25px;
  }
  .page-beginner-guide-faq__cta-content, .page-beginner-guide-faq__image--cta {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  .page-beginner-guide-faq__cta-content {
    text-align: center;
  }
  .page-beginner-guide-faq__image--small {
    max-width: 80%;
  }
  .page-beginner-guide-faq__image--large {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-faq__hero-title {
    font-size: 2.2em;
  }
  .page-beginner-guide-faq__hero-description {
    font-size: 1em;
  }
  .page-beginner-guide-faq__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-faq__accordion-header {
    font-size: 1.1em;
    padding: 18px 20px;
  }
  .page-beginner-guide-faq__accordion-content p {
    font-size: 0.95em;
  }
  .page-beginner-guide-faq__cta-title {
    font-size: 2.2em;
  }
  .page-beginner-guide-faq__cta-description {
    font-size: 1em;
  }
  .page-beginner-guide-faq__hero-button, .page-beginner-guide-faq__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-faq__hero-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-faq__hero-description {
    font-size: 0.9em;
  }
  .page-beginner-guide-faq__section-title {
    font-size: 1.6em;
  }
  .page-beginner-guide-faq__accordion-header {
    font-size: 1em;
    padding: 15px 15px;
  }
  .page-beginner-guide-faq__accordion-icon {
    font-size: 1.5em;
  }
  .page-beginner-guide-faq__accordion-content {
    padding: 0 15px 15px 15px;
  }
  .page-beginner-guide-faq__cta-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-faq__cta-description {
    font-size: 0.9em;
  }
  .page-beginner-guide-faq__image--small,
  .page-beginner-guide-faq__image--large {
    max-width: 100%;
  }
}