.faq-hero {
  background: url('https://res.cloudinary.com/dx1jbyib2/image/upload/v1776166112/AZD03571_1_haqslk.jpg') center/cover no-repeat;
}

.faq-intro {
  text-align: center;
  padding: 40px 20px 0;
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.faq-intro p {
  font-size: 18px;
  color: #999595;
  line-height: 1.8;
}

.faq-intro .underline {
  background-color: #333;
  margin: 5px auto 5px;
  width: 100px;
  height: 2px;
}

.faq-section {
  max-width: 1200px;
  margin: 20px auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.faq-category {
  /* background: #fdfdfd; */
  padding: 30px;
  /* border-radius: 15px; */
  /* box-shadow: 0 5px 25px rgba(0,0,0,0.05); */
  display: flex;
  flex-direction: column;
}

.faq-category h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #c19b76;
  border-bottom: 2px solid #c19b76;
  padding-bottom: 5px;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px 0;
  text-align: left;
  font-size: 17px;
  color: #444;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
}

.faq-question span {
  font-size: 20px;
  transition: 0.3s ease;
  color: #c19b76;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 12px;
  line-height: 1.7;
  color: #666;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Responsive Moved to responsive.css */