.faq {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}
.faq__title {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.faq__subtitle {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 14px;
  color: #333;
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.faq__item {
  border-top: 1px solid #ccc;
}
.faq__item:last-child {
  border-bottom: 1px solid #ccc;
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq__icon {
  font-size: 24px;
  color: #00008b;
  transition: transform 0.3s;
}
.faq__item.active .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  display: none;
  padding: 0 0 15px;
  font-size: 15px;
  color: #444;
}
.faq__item.active .faq__answer {
  display: block;
}
