.page-faq {
  background-color: #B71C1C;
  color: #FFF5E1;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

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

.page-faq__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/5;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__hero-content {
  max-width: 900px;
  padding: 0 15px;
}

.page-faq__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFF5E1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.page-faq__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #FFF5E1;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-faq__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #FFD86A 0%, #E6B800 100%);
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.page-faq__section-description {
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.85;
}

.page-faq__intro-section,
.page-faq__faq-list-section,
.page-faq__cta-section {
  padding: 40px 0;
}

.page-faq__faq-list-section {
  background-color: #7A0E0E;
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  max-width: 1000px;
}

.page-faq__accordion-group {
  padding: 20px 0;
}

.page-faq__accordion-item {
  background-color: #D32F2F;
  border: 1px solid #F2B544;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-faq__accordion-item:last-child {
  margin-bottom: 0;
}

.page-faq__accordion-summary {
  display: block;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFF5E1;
  cursor: pointer;
  position: relative;
  background-color: #C91F17;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
}

.page-faq__accordion-summary:hover {
  background-color: #E53935;
}

.page-faq__accordion-summary::marker, .page-faq__accordion-summary::-webkit-details-marker {
  display: none;
}

.page-faq__accordion-summary::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: #FFD86A;
  transition: transform 0.3s ease;
}

.page-faq__accordion-item[open] .page-faq__accordion-summary::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-faq__accordion-item[open] .page-faq__accordion-summary {
  border-bottom-color: #F2B544;
}

.page-faq__accordion-content {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.8;
  color: #FFF5E1;
  opacity: 0.85;
  background-color: #D32F2F;
}

.page-faq__accordion-content p {
  margin-bottom: 15px;
}

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

.page-faq__btn {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  color: #7A0E0E; /* Deep Red for button text for contrast */
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__cta-section {
  text-align: center;
  padding-bottom: 60px;
}

.page-faq__cta-section .page-faq__section-title {
  margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-faq__hero-image {
    aspect-ratio: 16/9;
  }

  .page-faq__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-faq__hero-description {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }

  .page-faq__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .page-faq__accordion-summary {
    font-size: 1.05rem;
    padding: 15px 20px;
  }

  .page-faq__accordion-summary::after {
    right: 20px;
    font-size: 1.3rem;
  }

  .page-faq__accordion-content {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 549px) {
  .page-faq__hero-image {
    aspect-ratio: 4/3;
  }

  .page-faq__main-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }

  .page-faq__hero-description {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
  }

  .page-faq__section-title {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }

  .page-faq__section-description {
    font-size: 0.9rem;
  }

  .page-faq__accordion-summary {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .page-faq__accordion-summary::after {
    right: 15px;
    font-size: 1.2rem;
  }

  .page-faq__accordion-content {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .page-faq__btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-faq__container {
    padding: 0 10px;
  }
}

/* Mobile content area image overflow prevention */
@media (max-width: 768px) {
  .page-faq img {
    max-width: 100%;
    height: auto;
  }
  .page-faq {
    overflow-x: hidden;
  }
}

/* Content area images minimum size */
.page-faq__accordion-content img, .page-faq__intro-section img, .page-faq__cta-section img {
  min-width: 200px;
  min-height: 200px;
}