.faq-container {
 
  color: var(--white);
  padding: 2.5rem 1.5rem 3.25rem;
  max-width: 1440px;
  margin: 0 auto;
}
.faqs-title{
  font-size: 1.87rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--white);
}

.faq-item {
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-self: center;
  width: 100%;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--white);
  padding: 0;
  font: inherit;
  text-align: left;
  user-select: none;
  gap: 1rem;
}

.faq-number {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}

.faq-title {
  flex-grow: 1;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
}

.faq-toggle {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--white)
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
  user-select: none;
}

.faq-answer {
  margin-top: .93rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--white);
  padding-left: 2.37rem; 
   
}

.faq-answer ul {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  margin: 0;
  list-style: none;
}

.faq-answer ul li {
  margin-top: .75rem;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
}

.faq-item.active .faq-toggle {
  color: white;
}
.faq-item-content {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
}
.faq-icon{
  width: 1.12rem;
  height: 1.25rem;
}

@media (min-width: 1024px) {
.faq-container{
  width: 41rem;
}
.faqs-title{
  font-size: 2rem;
  text-align: left;
}

}