.page-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

.page-faq__hero-section {
  padding-top: 10px; /* Adhering to fixed header spacing rule */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #E53935 0%, #C91F17 100%); /* Using brand colors for hero background */
  color: #FFF5E1;
}

.page-faq__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  gap: 30px;
}

.page-faq__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: left;
}

.page-faq__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFD86A; /* Gold-like for title */
}

.page-faq__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-faq__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-faq__btn-primary,
.page-faq__btn-secondary,
.page-faq__btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-faq__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
  color: #7A0E0E; /* Deep Red for text on gold */
  border: 2px solid #F2B544; /* Border color */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__btn-secondary {
  background-color: transparent;
  color: #FFD86A;
  border: 2px solid #FFD86A;
}

.page-faq__btn-secondary:hover {
  background-color: #FFD86A;
  color: #7A0E0E;
  transform: translateY(-2px);
}

.page-faq__btn-text {
  background-color: transparent;
  color: #F4D34D; /* Gold */
  text-decoration: underline;
  padding: 5px 0;
  border: none;
  font-size: 1rem;
}

.page-faq__btn-text:hover {
  color: #FFCC66; /* Glow */
}

.page-faq__hero-image {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
}

.page-faq__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-faq__faq-list-section {
  padding: 60px 0;
  background-color: #D32F2F; /* Card BG */
}

.page-faq__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-faq__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #FFD86A; /* Gold-like for title */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-faq__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-faq__faq-item {
  background-color: #C91F17; /* Main color as background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #FFF5E1;
  border: 1px solid #E53935;
}

.page-faq__faq-item summary {
  display: block;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  user-select: none;
  list-style: none;
  font-weight: 600;
  font-size: 1.15rem;
  color: #FFD86A;
  background-color: #7A0E0E; /* Deep Red for summary */
  border-bottom: 1px solid #E53935;
}

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

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-faq__faq-qtext {
  flex-grow: 1;
  padding-right: 10px;
}

.page-faq__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #FFD86A;
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
  content: "−";
}

.page-faq__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #FFF5E1;
  background-color: #C91F17;
}

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

.page-faq__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-faq__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
  background-color: #B71C1C; /* Background */
  color: #FFF5E1;
}

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

.page-faq__cta-bottom-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #FFD86A;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-faq__cta-bottom-text {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #FFF5E1;
}

/* General image styling for content area */
.page-faq img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-faq__hero-container {
    padding: 30px 25px;
  }
  .page-faq__hero-content {
    flex: 1 1 100%;
  }
  .page-faq__hero-image {
    flex: 1 1 100%;
  }
  .page-faq__main-title {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
  }
  .page-faq__intro-text {
    font-size: 1.05rem;
  }
  .page-faq__container {
    padding: 0 25px;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding-top: 10px !important; /* Adhering to fixed header spacing rule */
    padding-bottom: 40px;
  }

  .page-faq__hero-container {
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }

  .page-faq__hero-content,
  .page-faq__hero-image {
    flex: 1 1 100%;
    min-width: unset;
    text-align: center;
  }

  .page-faq__main-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
    margin-bottom: 15px;
  }

  .page-faq__intro-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-faq__btn-primary,
  .page-faq__btn-secondary,
  .page-faq a[class*="button"],
  .page-faq a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-faq__hero-side-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

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

  .page-faq__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

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

  .page-faq__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .page-faq__cta-bottom-section {
    padding: 60px 0;
  }

  .page-faq__cta-bottom-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 15px;
  }

  .page-faq__cta-bottom-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* General image styling for content area */
  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-faq__section,
  .page-faq__card,
  .page-faq__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}