

.faq {
    margin-bottom: 0px;
}
.faq-question {
    cursor: pointer;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    color: darkblue;
    margin-bottom: -17px;
}
.faq-answer {
    display: none;
    padding: 10px;
    padding-left: 20px;
    border-top: none;
    border-radius: 0 0 5px 5px;
    background: #f9f9f9;
    font-size: 17px;
}
.faq-symbol {
    font-weight: bold;
    transition: transform 0.2s;
}
.faq-symbol.open {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-answer {
    font-size: 16px;
  }
  .faq-question {
    font-size: 16px;
    margin-bottom: 0px;
  }
}
