   .faq-section {
          max-width: 800px;
          margin: 0 auto;
          background: #fff;
          padding: 30px;
          box-shadow: 0 0 15px rgba(0,0,0,0.1);
          border-radius: 10px;
        }

        .faq-section h2 { 
          text-align: center!important;
          margin-bottom: 30px;
        }
      .inner_page_cont h2 {
          text-align: center;
       }

        .faq-item {
          border-bottom: 1px solid #ddd;
          padding: 20px 0;
          cursor: pointer;
        }

        .faq-question {
          font-size: 18px;
          font-weight: bold;
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        .faq-answer {
          display: none;
          margin-top: 10px;
          font-size: 16px;
          line-height: 1.5;
        }

        .faq-item.active .faq-answer {
          display: block;
        }

        .arrow {
          transition: transform 0.2s ease;
        }

        .faq-item.active .arrow {
          transform: rotate(90deg);
        }