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

.page-beginner-guide-faq-common .highlight {
  color: #003366; /* Main brand color for emphasis */
  font-weight: bold;
}

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

/* Hero Section */
.page-beginner-guide-faq-common__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-faq-common__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_geometric,subtle_pattern,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-beginner-guide-faq-common__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: #FFCC00; /* Accent color for title */
}

.page-beginner-guide-faq-common__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-beginner-guide-faq-common__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-beginner-guide-faq-common__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-beginner-guide-faq-common__btn--primary {
  background-color: #FFCC00; /* Accent color */
  color: #003366; /* Main brand color */
  border: 2px solid #FFCC00;
}

.page-beginner-guide-faq-common__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-beginner-guide-faq-common__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Accent color */
  border: 2px solid #FFCC00;
}

.page-beginner-guide-faq-common__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-beginner-guide-faq-common__faq-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-beginner-guide-faq-common__faq-section--dark {
  background-color: #f0f2f5;
}

.page-beginner-guide-faq-common__section-title {
  font-size: 2.2em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-beginner-guide-faq-common__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFCC00;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-beginner-guide-faq-common__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-faq-common__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-beginner-guide-faq-common__faq-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-faq-common__faq-item.page-beginner-guide-faq-common__faq-item--active {
  border-color: #003366;
}

.page-beginner-guide-faq-common__faq-question {
  display: block;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #003366;
  cursor: pointer;
  position: relative;
  background-color: #fcfcfc;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.page-beginner-guide-faq-common__faq-question:hover {
  background-color: #f0f0f0;
}

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

.page-beginner-guide-faq-common__faq-item[open] .page-beginner-guide-faq-common__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-beginner-guide-faq-common__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #444;
  background-color: #ffffff;
  border-top: 1px solid #eee;
}

.page-beginner-guide-faq-common__faq-answer p {
  margin-bottom: 15px;
}

.page-beginner-guide-faq-common__faq-answer ul,
.page-beginner-guide-faq-common__faq-answer ol {
  margin-left: 25px;
  margin-bottom: 15px;
  list-style-type: disc;
}

.page-beginner-guide-faq-common__faq-answer ol {
  list-style-type: decimal;
}

.page-beginner-guide-faq-common__faq-answer li {
  margin-bottom: 8px;
}

.page-beginner-guide-faq-common__inline-link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-beginner-guide-faq-common__inline-link:hover {
  color: #FFCC00;
}

.page-beginner-guide-faq-common__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-common__image--inline {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-faq-common__btn--download {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #003366;
  margin-top: 20px;
}

.page-beginner-guide-faq-common__btn--download:hover {
  background-color: #004488;
  border-color: #004488;
  color: #fff;
}

/* CTA Section */
.page-beginner-guide-faq-common__cta-section {
  background-color: #003366; /* Main brand color */
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-beginner-guide-faq-common__cta-section .page-beginner-guide-faq-common__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-beginner-guide-faq-common__cta-image {
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-faq-common__cta-content {
  max-width: 700px;
}

.page-beginner-guide-faq-common__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #FFCC00; /* Accent color */
}

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

.page-beginner-guide-faq-common__btn--cta {
  background-color: #FFCC00; /* Accent color */
  color: #003366;
  border: 2px solid #FFCC00;
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 30px;
}

.page-beginner-guide-faq-common__btn--cta:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
}

/* Disclaimer Section */
.page-beginner-guide-faq-common__disclaimer-section {
  background-color: #333;
  color: #bbb;
  padding: 30px 0;
  text-align: center;
  font-size: 0.9em;
}

.page-beginner-guide-faq-common__disclaimer-text strong {
  color: #FFCC00;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-beginner-guide-faq-common__cta-section .page-beginner-guide-faq-common__container {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }

  .page-beginner-guide-faq-common__cta-content {
    text-align: left;
    margin-left: 50px;
  }

  .page-beginner-guide-faq-common__cta-image {
    order: -1; /* Image first on larger screens */
  }
}

@media (max-width: 767px) {
  .page-beginner-guide-faq-common__hero-title {
    font-size: 2em;
  }

  .page-beginner-guide-faq-common__hero-subtitle {
    font-size: 1em;
  }

  .page-beginner-guide-faq-common__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-beginner-guide-faq-common__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-beginner-guide-faq-common__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-faq-common__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-beginner-guide-faq-common__faq-question::after {
    right: 20px;
  }

  .page-beginner-guide-faq-common__faq-answer {
    padding: 15px 20px;
  }

  .page-beginner-guide-faq-common__cta-title {
    font-size: 2em;
  }
}