/*FAQ Styling*/ 
    .question {
      background-color: #c8cac6ff;
      cursor: pointer; /* Show it's clickable */
    }
    .question p {
      text-indent: 0;
      font-size: 1.4rem;
      font-weight: 700;
      font-style: normal;
      margin-top: 40px;
      padding: 10px 5px;
    }
    .answer {
      display: none; /* Hide answers by default */
      margin-left: 10px;
    }
    .answer ul li {
      margin-bottom: 20px;
    }

    .mal p {
      text-indent: 0;
      font-size: 1.2rem;
      font-weight: 400;
      font-style: normal;
      margin-top: 40px;
      padding: 10px 5px;
    }

    /* Optional: style for expanded state */
    .question.active {
      background-color: #a7ad9eff;
    }