.faq{
    background-color: var(--color-white);
    padding: 100px 0
}
.faq-content{
    display: flex;
    flex-direction: column;
    gap: 45px;
}
.faq-title{
    display: flex;
    gap:  32px
}

.faq-title h3{ 
    font-weight: 600;
    font-size: 56px;
    line-height: 64px;
    min-width: 50%;
}
.faq-title p{ 
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: var(--color-secondary);
    max-width: 40%;
}
.faq-list{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
}


@media (max-width: 600px) {
  .faq{
    padding: 64px 0 40px 0;
  }
  .faq-content{
    gap:32px;
  }
  .faq-title{
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .faq-title h3{
    font-size: 24px;
    line-height: 32px;
  }
  .faq-title p{
    font-size: 14px;
    line-height: 20px;
    max-width: 100%;
  }
}