.faq-section {
  background: url("faq.png") no-repeat center center / cover;
  padding: 80px 80px;
  min-height: 526px;
}

.faq-section h2 {
  color: #ffffff;
  font-family: Cormorant;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 2%;
  margin-left: 5%;
}

.faq-section .faq-container {
  background: #fff;
  min-height: 235px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-section .faq-container .faq-item {
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.faq-section .faq-container .faq-item .faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 15px 0;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #222;
  font-family: sans-serif;
  transition: color 0.3s ease;
}

.faq-section .faq-container .faq-item .faq-question:hover {
  color: #9c5a26;
}

.faq-section .faq-container .faq-item .faq-question .faq-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-section .faq-container .faq-item .faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-section .faq-container .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.95rem;
  color: #555;
  padding: 0 0;
}

.faq-section .faq-container .faq-item.open .faq-answer {
  max-height: 200px;
  padding: 15px 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0px;
    min-height: 278px;
  }
  .faq-section h2 {
    font-size: 24px;
    margin-bottom: 5%;
    margin-left: 0%;
    text-align: center;
  }
  .faq-section .faq-container {
    min-height: 143px;
    padding: 20px;
  }
  .faq-section .faq-container .faq-item .faq-question .faq-icon {
    font-size: 13px;
  }
  .faq-section .faq-container .faq-item .faq-question {
    padding: 5px 0;
    font-size: 13px;
  }
  .faq-section .faq-container .faq-item .faq-answer {
    font-size: 11px;
  }
}
