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

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

/* Hero Section */
.page-faq__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  margin-bottom: 40px;
  overflow: hidden;
}

.page-faq__hero-image {
  width: 100%;
  max-height: 675px; /* Max height for hero image container */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-faq__hero-image img {
  width: 100%;
  height: 675px; /* Fixed height for desktop to maintain aspect ratio */
  object-fit: cover;
  display: block;
}

.page-faq__hero-content {
  max-width: 900px;
  padding: 0 20px;
  margin-top: -100px; /* Overlap slightly for visual effect */
  position: relative;
  z-index: 2;
  background: rgba(19, 19, 19, 0.7); /* Dark semi-transparent background for text */
  padding: 30px;
  border-radius: 10px;
}