@media screen and (min-width: 850px) {
  .faq-gallery {
    width: 90vw;
    margin: 60px auto;
    margin-bottom: 200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .faq-gallery .faq-box {
    height: 60px;
    line-height: 60px;
    background-color: white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    text-align: center;
    border-radius: 5px;
  }
  .faq-gallery .faq-box p {
    font-family: "A1 Gothic M", sans-serif;
    color: #3A7A95;
  }
}
@media screen and (max-width: 850px) {
  .faq-gallery {
    width: 90vw;
    margin: 20px auto;
    margin-bottom: 60px;
  }
  .faq-gallery .faq-box {
    margin: 20px auto;
    height: 60px;
    line-height: 60px;
    background-color: white;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 5px;
  }
  .faq-gallery .faq-box p {
    font-family: "A1 Gothic M", sans-serif;
    color: #3A7A95;
  }
}
