  /* =========================================
   MARWAN FAQ SECTION
========================================= */

  .marwan-faq-section {
      padding: 40px 0;
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
  }


  /* =========================================
   FAQ HEADER
========================================= */

  .marwan-faq-header {
      position: relative;
      overflow: hidden;

      padding: 40px;

      margin-bottom: 20px;

      color: #fff;

      border-radius: 30px;

      background: linear-gradient(135deg,
              #0068b7 0%,
              #008fd3 50%,
              #00b9e8 100%);

      box-shadow: 0 15px 35px rgba(0, 104, 183, .18);
  }


  /* Background circle */

  .marwan-faq-header::before {
      content: "";

      position: absolute;

      width: 300px;
      height: 300px;

      top: -120px;
      right: -120px;

      border-radius: 50%;

      background: rgba(255, 255, 255, .08);
  }


  /* Keep text above background */

  .marwan-faq-header>* {
      position: relative;
      z-index: 1;
  }



  /* =========================================
   FAQ TITLE
========================================= */

  .marwan-faq-title {
      margin-bottom: 10px;

      color: #fff;

      font-size: 42px;

      font-weight: 800;
  }


  .marwan-faq-title i {
      color: #fff;
  }


  /* =========================================
   FAQ CONTENT
========================================= */

  .marwan-faq-content {
      position: relative;
  }


  /* =========================================
   ACCORDION ITEM
========================================= */

  #faqAccordion .accordion-item {
      overflow: hidden;

      margin-bottom: 10px;

      border: 1px solid rgba(0, 104, 183, .06);

      border-radius: 20px !important;

      box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  }


  /* =========================================
   ACCORDION BUTTON
========================================= */

  #faqAccordion .accordion-button {
      gap: 14px;

      padding: 17px 22px;

      background: #fff;

      color: #1b2733;

      font-size: 17px;

      font-weight: 700;

      box-shadow: none;

      transition:
          background .3s ease,
          color .3s ease;
  }


  /* Hover */

  #faqAccordion .accordion-button:hover {
      background: #f5fbff;
  }


  /* Active/open */

  #faqAccordion .accordion-button:not(.collapsed) {
      color: #fff;

      background: linear-gradient(135deg,
              #0068b7,
              #008fd3 55%,
              #00b9e8);
  }


  /* =========================================
   FAQ NUMBER
========================================= */

  .marwan-faq-number {
      display: inline-flex;

      align-items: center;
      justify-content: center;

      flex: 0 0 38px;

      width: 38px;
      height: 38px;

      border-radius: 50%;

      background: rgba(0, 145, 210, .1);

      color: #008fd3;

      font-size: 12px;

      font-weight: 800;

      transition: all .3s ease;
  }


  /* Number when accordion open */

  #faqAccordion .accordion-button:not(.collapsed) .marwan-faq-number {
      background: rgba(255, 255, 255, .18);

      color: #fff;
  }


  /* =========================================
   ACCORDION ICON
========================================= */

  #faqAccordion .accordion-button::after {
      width: 20px;
      height: 20px;

      background-size: 20px;

      transition: transform .3s ease;
  }


  /* White icon when open */

  #faqAccordion .accordion-button:not(.collapsed)::after {
      filter: brightness(0) invert(1);
  }


  /* =========================================
   FAQ BODY
========================================= */

  #faqAccordion .accordion-body {
      padding: 22px 30px 25px;

      background: #fff;

      color: #52606d;

      line-height: 1.8;

      font-size: 16px;
  }


  #faqAccordion .accordion-body p {
      margin: 0;
  }


  /* =========================================
   2 COLUMN DESKTOP LAYOUT
========================================= */

  @media (min-width: 992px) {
      #faqAccordion {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 15px 25px;
          align-items: start;
      }
      
      #faqAccordion .accordion-item {
          margin-bottom: 0;
      }
  }


  /* =========================================
   MOBILE
========================================= */

  @media(max-width:768px) {

      .marwan-faq-section {
          padding: 25px 0;
      }


      .marwan-faq-header {
          padding: 28px 18px;

          border-radius: 22px;
      }


      .marwan-faq-title {
          font-size: 27px;
      }


      .marwan-faq-header p {
          font-size: 14px;
      }


      #faqAccordion .accordion-button {
          gap: 10px;

          padding: 15px;

          font-size: 14px;
      }


      .marwan-faq-number {
          flex: 0 0 32px;

          width: 32px;
          height: 32px;

          font-size: 10px;
      }


      #faqAccordion .accordion-body {
          padding: 18px;

          font-size: 14px;
      }

  }