.page-faq {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

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

.page-faq__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
  background: linear-gradient(180deg, #C61F1F 0%, #E53030 100%);
  margin-bottom: 40px;
}

.page-faq__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-faq__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-faq__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #FFF1E8;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure H1 doesn't overflow */
}

.page-faq__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF1E8;
}

.page-faq__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 44px;
  min-width: 120px;
  border: none;
  cursor: pointer;
}

.page-faq__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-faq__section-title {
  font-size: 2.2em;
  color: #F3C54D;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-faq__introduction-section {
  padding: 40px 0;
  background-color: #2A1212;
  margin-bottom: 40px;
  border-radius: 8px;
}

.page-faq__intro-text {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: center;
}

.page-faq__contact-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-height: 44px;
  min-width: 100px;
  border: none;
}

.page-faq__contact-button:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

.page-faq__accordion-section {
  padding: 40px 0;
  margin-bottom: 40px;
}

.page-faq__accordion-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-faq__accordion-item {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-faq__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: #C61F1F;
  color: #FFF1E8;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.page-faq__accordion-header:hover {
  background-color: #E53030;
}

.page-faq__accordion-question {
  flex-grow: 1;
}

.page-faq__accordion-icon {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-faq__accordion-header[aria-expanded="true"] .page-faq__accordion-icon {
  transform: rotate(45deg);
}

.page-faq__accordion-panel {
  padding: 0 20px;
  background-color: #2A1212;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-faq__accordion-panel[aria-hidden="false"] {
  max-height: 500px; /* Adjust based on content */
  padding: 20px;
}

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

.page-faq__panel-link {
  display: inline-block;
  background-color: #7E0D0D;
  color: #FFF1E8;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
  min-height: 30px;
  line-height: 1.5;
}

.page-faq__panel-link:hover {
  background-color: #C61F1F;
}

.page-faq__additional-info-section {
  padding: 40px 0;
  background-color: #140C0C;
  margin-bottom: 40px;
}

.page-faq__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-faq__info-card {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-faq__info-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
  display: block; /* Ensure image is block level */
}

.page-faq__info-card-title {
  font-size: 1.5em;
  color: #F3C54D;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-faq__info-card-text {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-faq__info-card-link {
  display: inline-block;
  background-color: #7E0D0D;
  color: #FFF1E8;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-height: 44px;
  line-height: 1.5;
}

.page-faq__info-card-link:hover {
  background-color: #C61F1F;
}

.page-faq__cta-bottom-section {
  background: linear-gradient(90deg, #C61F1F 0%, #E53030 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 40px;
}

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

.page-faq__cta-bottom-text {
  font-size: 1.2em;
  color: #FFF1E8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__cta-bottom-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 44px;
  min-width: 150px;
  border: none;
  cursor: pointer;
}

.page-faq__cta-bottom-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-faq__hero-content {
    padding: 0 15px;
  }

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

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

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

@media (max-width: 849px) {
  .page-faq__hero-section {
    padding: 30px 0;
  }

  .page-faq__main-title {
    font-size: 2.2em;
  }

  .page-faq__description {
    font-size: 1em;
  }

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

  .page-faq__intro-text {
    font-size: 0.95em;
  }

  .page-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-faq__accordion-panel[aria-hidden="false"] {
    padding: 15px;
  }

  .page-faq__info-card-image {
    height: 180px;
  }

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

  .page-faq__cta-bottom-text {
    font-size: 1.1em;
  }

  .page-faq__hero-image,
  .page-faq__info-card-image {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-faq__container {
    padding: 15px;
  }

  .page-faq__hero-image,
  .page-faq__info-card-image {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .page-faq__info-grid {
    grid-template-columns: 1fr;
  }

  .page-faq__main-title {
    font-size: 1.8em; /* Ensure H1 is not too large on mobile */
  }
}

@media (max-width: 549px) {
  .page-faq__hero-section {
    padding: 20px 0;
  }

  .page-faq__main-title {
    font-size: 1.6em;
  }

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

  .page-faq__accordion-header {
    font-size: 1em;
    padding: 12px;
  }

  .page-faq__accordion-icon {
    font-size: 1.2em;
  }

  .page-faq__accordion-panel[aria-hidden="false"] {
    padding: 12px;
  }

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

  .page-faq__cta-bottom-text {
    font-size: 1em;
  }

  .page-faq__cta-button,
  .page-faq__contact-button,
  .page-faq__info-card-link,
  .page-faq__cta-bottom-button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-faq__panel-link {
    width: 100%;
    max-width: unset;
    margin-right: 0;
  }
}