.faq-container {
    margin: 20px 0;
}
.faq-item {
  max-width: 1161px;
  min-height: 264px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px;
  border-radius: 24px;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 12px 0px #0000001F;

  margin: 0 auto 24px auto; /* centers and gives bottom margin */
}

.faq-question {
display: flex;;
gap: 20px;
    align-items: center;

}


.faq-question h3 {
   font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  color: #212636; /* assuming white text on dark bg */
  background: #fff;
  max-width: 1029px;
  min-height: 31px;
  padding: 10px 20px; /* optional for spacing */
  border-radius: 12px; /* optional, based on design style */
  box-sizing: border-box;
  cursor: pointer;
}

.faq-icon {
  width: 52px;
  height: 52px;
  background-color: #24929A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff; /* optional icon color */
  flex-shrink: 0;
}

.faq-answer {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  color: #212636; /* Assuming white text on dark background */
  max-width: 1089px;
  min-height: 128px;
 
  border-radius: 16px; /* Optional for smoother look */
  box-sizing: border-box;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p{
    margin:0;
    padding:0;
}
