.page-faq {
  background-color: #B71C1C;
  color: #FFF5E1;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-faq__hero-section {
  position: relative;
  padding-top: 10px;
  background-color: #7A0E0E;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-faq__hero-content {
  position: relative;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-faq__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  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__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-faq__section-title,
.page-faq__cta-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F4D34D; /* Gold */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-faq__faq-section {
  padding: 60px 0;
  background-color: #B71C1C;
}

.page-faq__accordion-item {
  background-color: #D32F2F; /* Card BG */
  border: 1px solid #F2B544; /* Border */
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-faq__accordion-header {
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFF5E1;
  background-color: #C91F17; /* Main Color */
  transition: background-color 0.3s ease;
}

.page-faq__accordion-header:hover,
.page-faq__accordion-header:focus {
  background-color: #E53935; /* Auxiliary Color */
  outline: none;
}

.page-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-faq__accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq__accordion-content.open {
  max-height: 500px; /* Adjust as needed */
  padding: 20px;
}

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

.page-faq__content-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-faq__button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for text on gold button */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-right: 15px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

.page-faq__button:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px #FFCC66; /* Glow */
}

.page-faq__cta-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #7A0E0E; /* Deep Red */
}

.page-faq__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__cta-buttons .page-faq__button {
  margin: 10px;
}

.page-faq__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
}

.page-faq__button--secondary {
  background-color: #C91F17; /* Main Color */
  color: #FFF5E1;
  border: 1px solid #F2B544;
}

.page-faq__button--secondary:hover {
  background-color: #E53935; /* Auxiliary Color */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

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

  .page-faq__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-faq__description {
    font-size: clamp(0.9em, 2.5vw, 1.1em);
  }

  .page-faq__section-title,
  .page-faq__cta-title {
    font-size: clamp(1.5em, 5vw, 2.2em);
  }

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

  .page-faq__accordion-content.open {
    padding: 15px;
  }

  .page-faq__button {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }

  .page-faq__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-faq__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-faq__faq-section img,
  .page-faq__cta-section img {
    max-width: 100%;
    height: auto;
  }
  .page-faq__accordion-content img {
    max-width: 100%;
    height: auto;
  }
}