 /*Prayers Accordion Styling*/ 
    .topic {
      background-color: #c8cac6ff;
      cursor: pointer; /* Show it's clickable */
    }
    .topic p {
      text-indent: 0;
      font-size: 1.4rem;
      font-weight: 700;
      font-style: normal;
      margin-top: 40px;
      padding: 10px 5px;
    }
    .prayer {
      display: none; /* Hide answers by default */
      margin-left: 10px;
    }
    .prayer 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 */
    .topic.active {
      background-color: #a7ad9eff;
    }