.page-faq {
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-faq__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

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

.page-faq__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for luxury */
  line-height: 1.2;
}

.page-faq__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-faq__hero-button {
  display: inline-block;
  background-color: #FF4500; /* Main brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

.page-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.6); /* Darken image for text readability */
}

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

.page-faq__section-title {
  font-size: 2.8em;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-faq__intro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-faq__category-title {
  font-size: 2em;
  color: #1E90FF; /* Auxiliary brand color */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #1E90FF;
  padding-bottom: 10px;
  font-weight: 600;
}

.page-faq__accordion-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

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

.page-faq__accordion-header.active {
  background-color: #1E90FF;
  color: #ffffff;
}

.page-faq__accordion-header.active .page-faq__accordion-icon {
  transform: rotate(180deg);
  color: #ffffff;
}

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

.page-faq__accordion-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 15px;
  position: relative;
  transition: transform 0.3s ease;
}

.page-faq__accordion-icon::before {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5em;
  line-height: 1;
}

.page-faq__accordion-header.active .page-faq__accordion-icon::before {
  content: '-';
}

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

.page-faq__accordion-content p {
  padding: 20px 0;
  margin: 0;
  color: #444444;
}

.page-faq__accordion-content p a {
  color: #1E90FF;
  text-decoration: underline;
}

.page-faq__accordion-content p a:hover {
  color: #FF4500;
}

.page-faq__call-to-action {
  text-align: center;
  background-color: #f5f5f5;
  padding: 60px 30px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.page-faq__cta-title {
  font-size: 2.5em;
  color: #FF4500; /* Main brand color */
  margin-bottom: 20px;
  font-weight: 700;
}

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

.page-faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-faq__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-faq__cta-button.btn--primary {
  background-color: #FF4500;
  color: #ffffff;
}

.page-faq__cta-button.btn--primary:hover {
  background-color: #e13b00;
  transform: translateY(-2px);
}

.page-faq__cta-button.btn--secondary {
  background-color: #1E90FF;
  color: #ffffff;
}

.page-faq__cta-button.btn--secondary:hover {
  background-color: #1565b3;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-faq__hero-title {
    font-size: 3em;
  }
  .page-faq__section-title {
    font-size: 2.5em;
  }
  .page-faq__category-title {
    font-size: 1.8em;
  }
  .page-faq__accordion-header {
    font-size: 1.1em;
  }
  .page-faq__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-container {
    padding: 60px 15px;
  }
  .page-faq__hero-title {
    font-size: 2.5em;
  }
  .page-faq__hero-description {
    font-size: 1em;
  }
  .page-faq__content-area {
    padding: 40px 15px;
  }
  .page-faq__section-title {
    font-size: 2em;
  }
  .page-faq__category-title {
    font-size: 1.6em;
  }
  .page-faq__accordion-header {
    font-size: 1em;
    padding: 18px 20px;
  }
  .page-faq__accordion-content {
    padding: 0 20px;
  }
  .page-faq__accordion-content p {
    padding: 15px 0;
  }
  .page-faq__cta-title {
    font-size: 1.8em;
  }
  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq__cta-button {
    width: 100%;
    max-width: 300px;
  }

  /* Mobile image handling - prevent overflow */
  .page-faq img {
    max-width: 100%;
    height: auto;
  }
  .page-faq__hero-image {
    width: 100%;
    height: auto;
    max-width: none; /* Override any max-width to allow full width */
  }
  /* Ensure content area does not cause horizontal scroll */
  .page-faq__content-area {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-faq__hero-title {
    font-size: 2em;
  }
  .page-faq__hero-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-faq__section-title {
    font-size: 1.8em;
  }
  .page-faq__category-title {
    font-size: 1.4em;
  }
  .page-faq__accordion-header {
    font-size: 0.95em;
    padding: 15px 15px;
  }
  .page-faq__accordion-content {
    padding: 0 15px;
  }
  .page-faq__cta-title {
    font-size: 1.5em;
  }
}