.header-banner {
  position: relative;
  width: 100%;
  height: 350px; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}


.header-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

.header-banner-text {
  position: relative;
  z-index: 2; /* above overlay */
  padding: 0 20px;
}

.header-banner-text h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0;
}

@media (max-width: 768px) {
  .header-banner {
    height: 250px;
  }
  .header-banner-text h1 {
    font-size: 2rem;
  }
}


.faq-content {
  max-width: 1000px;
  margin: 32px auto;
}

.faq-content h2 {
  cursor: pointer;
  background: #fffdf9;
  padding: 18px 50px 18px 24px;
  margin: 0;
  border-radius: 8px;
  transition: background 0.2s;
  font-size: 1.23em;
  position: relative;
  margin-bottom: 7px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border: none;
}

.faq-content h2:hover,
.faq-content h2.active {
  background: #bde0fe;
  color: #222;
}

.faq-content h2:after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3em;
  transition: transform 0.3s;
}

.faq-content h2.active:after {
  content: "–";
  transform: translateY(-50%) rotate(180deg);
}

.faq-content p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: #f6f9fa;
  margin: 0 0 9px 0;
  padding: 0 24px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.10);
  border-left: 3px solid #6b3e26;
  font-size: 1em;
  line-height: 1.6;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s ease;
}

.faq-content h2.active + p {
  max-height: 500px;
  opacity: 1;
  padding: 18px 24px;
  margin-bottom: 16px;
}