.faq {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.faq .title {
  text-align: center;
  font-size: 48px;
  margin: 0 0 20px;
  font-weight: 600;
  color: #222;
}

.faq-content {
  width: 100%;
  margin: 75px 100px 30px 100px;
}

.accordion {
  background-color: transparent;
  color: #222;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  border-bottom: 1px solid #ddd;
  border-radius: 0px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.accordion:after {
  content: '\02795';
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796";
}

.panel {
  padding: 0 18px;
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.faq-link {
  color: #222;
  text-decoration: underline;
  text-decoration-color: #ffd700;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

@media (max-width: 1100px) {
  .faq .title {
    font-size: 36px;
  }
  
  .faq-content {
    margin: 0 25px;
  }
}