.mp-faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-faq-item {
  border: 1px solid #D7DFC6;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.mp-faq-wrapper .mp-faq-item .mp-faq-question {
  width: 100%;
  background-color: #fff;
  border: none;
  text-align: left;
  padding: 16px 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  gap: 10px;
}

.mp-faq-question:hover {
  background: #f9f9f9;
}

.mp-faq-question .mp-faq-title{
      color: #000;
  font-size: 20px;
  font-weight: bold;
  font-family: "Space Grotesk", Sans-serif;
  line-height: 1.3;
  flex: 1 1 auto;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.mp-faq-toggle {
  display: inline-block;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.mp-faq-toggle img {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.mp-faq-toggle.open img {
  transform: rotate(45deg);
}

.mp-faq-answer {
  display: none;
  padding: 16px 20px;
 
  font-size: 18px;
  line-height: 1.5;
}

@media(max-width:767px){
    .mp-faq-question .mp-faq-title{
      
  font-size: 15px;
}
.mp-faq-answer {
  font-size: 15px;
}

}
