.page-faqs {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-bottom: 60px;
}

.page-faqs__hero-section {
  text-align: center;
  padding-bottom: 40px;
  padding-top: 10px; /* Small top padding for visual spacing, relying on body for header offset */
}

.page-faqs__hero-image {
  margin-bottom: 20px;
}

.page-faqs__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-faqs__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-faqs__main-title {
  font-size: clamp(1.8rem, 4vw, 2.2rem); /* Adjusted H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD36B; /* Auxiliary color for emphasis */
}

.page-faqs__intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-faqs__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-faqs__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: #FFF6D6; /* Text Main */
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.3);
}

.page-faqs__button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

.page-faqs__button--secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Auxiliary color */
  border: 1px solid #F2C14E; /* Main color */
  box-shadow: none;
}

.page-faqs__button--secondary:hover {
  background: #1A1A1A;
  color: #FFF6D6; /* Text Main */
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.1);
}

.page-faqs__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-faqs__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .page-faqs__faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.page-faqs__faq-category {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-faqs__category-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 25px;
  text-align: center;
}

.page-faqs__accordion-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(242, 193, 78, 0.2);
  padding-bottom: 15px;
}

.page-faqs__accordion-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-faqs__accordion-header {
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFF6D6; /* Text Main */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.page-faqs__accordion-header:hover {
  color: #FFD36B; /* Auxiliary color */
}

.page-faqs__accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-faqs__accordion-header.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-faqs__accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 10px;
  font-size: 1rem;
  line-height: 1.5;
  color: #E0DED7; /* Slightly lighter text for readability */
}

.page-faqs__accordion-content p {
  margin-bottom: 10px;
}

.page-faqs__accordion-content a {
  color: #F2C14E; /* Main color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-faqs__accordion-content a:hover {
  color: #FFD36B; /* Auxiliary color on hover */
  text-decoration: underline;
}

.page-faqs__cta-section {
  background-color: #0A0A0A; /* Background */
  padding: 60px 20px;
  text-align: center;
}

.page-faqs__cta-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #111111; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.page-faqs__cta-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-faqs__cta-content {
  padding: 30px;
}

.page-faqs__cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-faqs__cta-description {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E0DED7;
}

.page-faqs__button--large {
  padding: 15px 30px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .page-faqs__hero-content, .page-faqs__content-area, .page-faqs__cta-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-faqs__main-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }
  .page-faqs__intro-text {
    font-size: 1rem;
  }
  .page-faqs__category-title {
    font-size: 1.6rem;
  }
  .page-faqs__accordion-header {
    font-size: 1.05rem;
  }
  .page-faqs__accordion-content {
    font-size: 0.95rem;
  }
  .page-faqs__cta-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .page-faqs__cta-buttons {
    flex-direction: column;
  }
  .page-faqs__button {
    width: 100%;
  }

  /* Mobile image constraint */
  .page-faqs img {
    max-width: 100%;
    height: auto;
  }
  .page-faqs__hero-image img, .page-faqs__cta-image {
    width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
  .page-faqs__faq-category img {
    min-width: 200px; /* Ensure images in FAQ categories are not too small */
    min-height: 200px;
  }
}