.drm-faq {
  max-width: 870px;
  margin: 0 auto;
  padding: 50px 0;
  box-sizing: border-box;
}

.drm-faq .drm-faq-intro {
  text-align: center;
  margin-bottom: 50px;
}

.drm-faq .drm-faq-intro .drm-faq-label {
  font-family: "Verdana", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2f4bb1;
  letter-spacing: 1px;
  margin: 0;
}

.drm-faq .drm-faq-intro h2 {
  padding-top: 20px;
  margin: 0;
  line-height: 45px;
  font-size: 32px;
}

.drm-faq .drm-faq-category {
  margin-bottom: 40px;
}

.drm-faq .drm-faq-category-title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #2f4bb1;
  color: #2f4bb1;
}

.drm-faq .faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drm-faq .faq-list .faq-item {
  margin-bottom: 20px;
}

.drm-faq .faq-list .faq-wrap {
  background-color: #f1f3f8;
  padding: 20px 0;
}

.drm-faq .faq-list .faq-content {
  display: grid;
  align-items: center;
  grid-template-columns: 2rem auto;
  padding: 20px 40px;
}

.drm-faq .faq-list .faq-content .q-icon,
.drm-faq .faq-list .faq-content .a-icon {
  font-size: 20px;
  font-weight: 900;
  font-family: "Verdana", sans-serif;
}

.drm-faq .faq-list .faq-content .q-icon {
  color: #0279c6;
}

.drm-faq .faq-list .faq-content .a-icon {
  color: #7a1487;
}

.drm-faq .faq-list .faq-content h3 {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  padding-right: 10px;
  font-weight: bold;
}

.drm-faq .faq-list .faq-content p {
  margin: 0;
  line-height: 25px;
}

.drm-faq .faq-list .faq-content.question {
  cursor: pointer;
  grid-template-columns: 2rem auto 2rem;
}

.drm-faq .faq-list .faq-content .toggle-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: 0.3s ease-in-out;
}

.drm-faq .faq-list .faq-content .toggle-icon::after,
.drm-faq .faq-list .faq-content .toggle-icon::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: #0279c6;
  position: absolute;
  left: 50%;
  transition: 0.3s ease-in-out;
}

.drm-faq .faq-list .faq-content .toggle-icon::after {
  top: 0;
  transform: translate(-50%, 0);
}

.drm-faq .faq-list .faq-content .toggle-icon::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

.drm-faq .faq-list .faq-content.active .toggle-icon {
  transform: rotate(90deg);
}

.drm-faq .faq-list .faq-content.active .toggle-icon::before {
  opacity: 0;
}

.drm-faq .faq-list .faq-content.answer {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease-out;
  padding: 0 40px;
}

@media only screen and (max-width: 768px) {
  .drm-faq .faq-list .faq-content {
    padding: 10px 20px;
  }

  .drm-faq .faq-list .faq-content h3 {
    font-size: 16px;
    line-height: 1.5em;
  }

  .drm-faq .faq-list .faq-content p {
    font-size: 16px;
  }

  .drm-faq .faq-list .faq-content.answer {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 700px) {
  .drm-faq {
    padding: 30px 0;
  }

  .drm-faq .drm-faq-intro {
    margin-bottom: 20px;
  }

  .drm-faq .drm-faq-intro h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .drm-faq .drm-faq-category-title {
    font-size: 18px;
  }
}
