  .faq-container {
    margin: 0 auto;
  }

  .faq-item {
    border-bottom: dotted 1px #ccc;
    margin-bottom: 10px;
    padding: 0.5rem 0;
    overflow: hidden;
  }

  .faq-question {
    padding: 10px 10px 10px 60px;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    position: relative;
  }

  .faq-question:before {
    content: "Q";
    color: #FFF;
    font-size: 1.25rem;
    background-color: #5FC8D3;
    margin-right: 15px;
    width: 40px;
    line-height: 30px;
    border-radius: 4px;
    text-align: center;
    display: -moz-inline-box;
    display: inline-block;
    left: 0;
    top: 8px;
    position: absolute;
  }

  .faq-question::-webkit-details-marker {
    display: none;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
  }

  .faq-answer:before {
    content: "A";
    color: #FFF;
    font-weight: 600;
    background-color: #BFBFBF;
    margin-right: 15px;
    font-size: 1.25rem;
    width: 40px;
    line-height: 30px;
    border-radius: 4px;
    text-align: center;
    display: inline-block;
    left: 0;
    top: 8px;
    position: absolute;
  }

  .faq-item[open] .faq-answer {
    max-height: 500px;
    padding: 10px 10px 10px 60px;
  }