body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
}

/* Hero Section (Image with Title Overlay) */
.faq-hero {
  position: relative;
  width: 100%;
  height: 350px;
  background: url('your-faq-header-image.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-hero h1 {
  color: white;
  font-size: 2.8rem;
  font-weight: bold;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}

/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-item {
  border-top: 1px solid #ccc;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.faq-question h2 {
  margin: 0;
  font-size: 1.3rem;
  flex: 1;
}

.toggle-icon {
  font-size: 1.5rem;
  color: #5a2a9b;
  font-weight: bold;
  margin-right: 10px;
  transition: transform 0.3s;
}

.faq-answer {
  margin-top: 15px;
  transition: max-height 0.3s ease;
  overflow: hidden;
}

.faq-answer.closed {
  display: none;
}

.faq-answer iframe {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  border: none;
  margin-bottom: 15px;
}

.faq-answer ul {
  padding-left: 20px;
}

.faq-answer ul li {
  margin-bottom: 10px;
}
.faq-hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.faq-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
  text-align: center;
}
