.page-faq {
  color: #ffffff; /* Text color for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-faq__hero-section {
  background-color: #0A1931; /* Primary brand color for hero */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-faq__hero-content {
  max-width: 900px;
  z-index: 2;
}

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

.page-faq__description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-faq__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A1931;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-faq__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-faq__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.page-faq__accordion-section {
  padding: 60px 20px;
  background-color: #1a2b45; /* Body background color */
}

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

.page-faq__section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-faq__accordion-item {
  background-color: #0A1931; /* Darker background for accordion items */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__accordion-header {
  width: 100%;
  background-color: #1a2b45; /* Slightly lighter than item background for header */
  color: #ffffff;
  padding: 20px 25px;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.page-faq__accordion-header h3 {
  margin: 0;
  color: inherit;
}

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

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

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

.page-faq__accordion-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1rem;
  color: #e0e0e0;
}

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

.page-faq__accordion-content ol,
.page-faq__accordion-content ul {
  margin: 15px 0 15px 20px;
  padding: 0;
  list-style-position: outside;
  color: #e0e0e0;
}

.page-faq__accordion-content li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.page-faq__accordion-content a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-faq__accordion-content a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-faq__contact-promo {
  background-color: #0A1931;
  border-radius: 10px;
  padding: 40px;
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-faq__contact-image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-faq__contact-text {
  flex-grow: 1;
}

.page-faq__contact-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #FFD700;
  margin-bottom: 15px;
}

.page-faq__contact-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-faq__contact-button {
  display: inline-block;
  background-color: #1a2b45; /* Dark blue button */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-right: 15px;
  border: 2px solid #1a2b45;
}

.page-faq__contact-button:hover {
  background-color: #2a3c58;
  transform: translateY(-2px);
}

.page-faq__contact-button--primary {
  background-color: #FFD700;
  color: #0A1931;
  border-color: #FFD700;
}

.page-faq__contact-button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq__hero-section {
    padding: 60px 20px;
  }

  .page-faq__hero-image-wrapper {
    position: relative;
    height: 200px;
    margin-top: 30px;
  }

  .page-faq__hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Adjust for mobile hero image */
    opacity: 0.2;
  }

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

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

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

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

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

  .page-faq__accordion-content p,
  .page-faq__accordion-content li {
    font-size: 0.95rem;
  }

  .page-faq__contact-promo {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .page-faq__contact-image {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }

  .page-faq__contact-button {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    max-width: 280px;
  }

  .page-faq__contact-button:last-of-type {
    margin-bottom: 0;
  }

  /* Ensure all content area images are responsive and not too small */
  .page-faq img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
  }

  .page-faq__contact-image {
    min-width: 200px; /* Specific override for contact image if needed */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-faq__main-title {
    font-size: 1.8rem;
  }

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

  .page-faq__accordion-header {
    font-size: 1rem;
  }

  .page-faq__contact-title {
    font-size: 1.8rem;
  }
}