      .bg {
        position: relative;
        height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url('https://media.istockphoto.com/id/477914770/vector/bathroom-furniture-display-panorama.jpg?s=612x612&w=0&k=20&c=o8hEPCHJoDJQilRY0W3S3Svkc-nUbFLY8C1_IN2cGlE=');
        background-size: cover;
        background-position: center;
        text-align: center;
        color: white;
       
      }
      .bg::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: black; /* Adjust the color and opacity as needed */
        opacity: 0.7;
        z-index: 1;

      }

      .faq-heading{
        position: relative;
        z-index: 2;
        width: 70%;
        text-align: center;
        align-items: center;

      }
      .faq-heading h1{
        font-size: 4rem;
      }
     
      .list-group-item.active {
        background-color: purple;
        border: none;
      }
      .list-group-item{
        font-size:18px;
        font-family: "Alice", serif !important;
      }

      .ques {
        font-size: 18px;
      }

      .ques button {
        border: 2px solid #c6aef3;
        padding: 10px 25px;
        border-radius: 35px;
        background-color: #c6aef3;
        color: purple;
      }

      .faqcard {
        padding: 30px 20px;
        background-color: #e1d5f7;
      }

      .faqcard i {
        font-size: 30px;
        color: purple;
      }

      @media (max-width: 768px) {
        .faqImg img {
          display: none;
        }
      }