.collapsible {
  cursor: pointer;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s;
}

.collapsible .icon {
  background-image: url("../assets/icons/arrow-down.svg");
  height: 24px;
  width: 24px;
  background-size: cover;
}

.active .icon {
  background-image: url("../assets/icons/arrow-up.svg");
}

.content {
  padding-left: 60px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.content p {
  font-size: 14px;
  line-height: 23px;
  color: #403a42;
}

.faq-question {
  display: flex;
  align-items: center;
}

.faq-question span {
  width: 48px;
  height: 48px;
  border: 1px solid #d7dae0;
  border-radius: 12px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

@media (max-width: 800px) {
  .content {
    padding-left: 54px;
  }
  .collapsible {
    font-size: 15px;
  }
}
