.page-faq {
  color: #333333; /* Dark text on light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-faq__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #FFFFFF;
  color: #000000;
}

.page-faq__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-faq__hero-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-faq__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-faq__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
  min-width: 200px;
  text-align: center;
}

.page-faq__hero-button:hover {
  background-color: #e0a53b;
}

.page-faq__hero-image-wrapper {
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-faq__hero-image {
  display: block;
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-faq__section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.page-faq__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-faq__faq-list {
  display: grid;
  gap: 20px;
}

.page-faq__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-faq__faq-item[open] {
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-faq__faq-question {
  display: block;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  position: relative;
  user-select: none;
  background-color: #FCBC45; /* Login color */
  border-radius: 10px 10px 0 0;
  transition: background-color 0.3s ease;
}

.page-faq__faq-question:hover {
  background-color: #e0a53b;
}

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

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

.page-faq__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #333333;
  border-top: 1px solid #eee;
}

.page-faq__faq-answer p {
  margin-bottom: 15px;
}

.page-faq__faq-answer-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-faq__answer-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF; /* Register color */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-faq__answer-button:hover {
  background-color: #333333;
}

.page-faq__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-faq__cta-content {
  max-width: 800px;
  margin-bottom: 40px;
}

.page-faq__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-faq__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-faq__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.2em;
  min-width: 200px;
  text-align: center;
}

.page-faq__cta-button:hover {
  background-color: #e0a53b;
}

.page-faq__cta-image-wrapper {
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-faq__cta-image {
  display: block;
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-faq__hero-section {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 80px 40px;
  }

  .page-faq__hero-content {
    max-width: 50%;
    margin-right: 40px;
    margin-bottom: 0;
  }

  .page-faq__hero-image-wrapper {
    max-width: 45%;
  }

  .page-faq__cta-section {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 80px 40px;
  }

  .page-faq__cta-content {
    max-width: 50%;
    margin-right: 40px;
    margin-bottom: 0;
  }

  .page-faq__cta-image-wrapper {
    max-width: 45%;
  }

  .page-faq__hero-title {
    font-size: 3.5em;
  }

  .page-faq__section-title {
    font-size: 2.8em;
  }

  .page-faq__cta-title {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-title {
    font-size: 2.2em;
  }

  .page-faq__section-title {
    font-size: 1.8em;
  }

  .page-faq__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-faq__faq-question::after {
    right: 20px;
  }

  .page-faq__faq-answer {
    padding: 15px 20px;
  }

  .page-faq__hero-image, .page-faq__answer-image, .page-faq__cta-image {
    max-width: 100%;
    height: auto;
  }
}