  .accordion .card {
      border: 1px solid #ddd; /* Full border for the card */
      border-radius: 5px; /* Slightly rounded corners */
    }

    .accordion .card-header {
      padding: 0px !important;
      font-size:  20px !important; /* Matching heading size */
      font-weight: normal; /* Lighter font weight */
      color: #081c2e; /* Darker text for headings */
      border-bottom: 1px solid #ddd; /* Border separating the header from the body */
     background-color: #f7f7f7; /* No background color */
      display: flex;
      justify-content: space-between; /* Space between text and icon */
      align-items: center;
    }

    .accordion .card-header .btn {
      color: #081c2e; /* Dark text color */
      text-decoration: none;
      font-size: 20px !important;
      font-weight: normal; /* Keep the text weight light */
      text-align: left;
      width: 100%;
      padding: 20px;
      background: none;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
        text-transform: none !important
    }
    
    .accordion .card-header .btn h6{
        font-size: 20px !important;
    }

 .accordion .card-header .btn:hover {
    background: transparent !important;
}

    .accordion .card-header .btn:focus {
      outline: none;
    }

    .accordion .card-header .btn i {
      transition: transform 0.3s ease;
    }

    .accordion .card-body {
      padding: 20px;
      font-size: 16px;
      color: #081c2e; /* Lighter text color in the body */
      background-color: #fff;
    }

    .accordion .card-body ul {
      list-style-type: disc;
      padding-left: 20px;
    }

    .accordion .card-body ul li {
      margin-bottom: 8px;
    }

    .accordion .card-body strong {
      color: #007bff; /* Blue color for strong text */
    }

   /* Default state when accordion is closed */
.accordion .card-header button.collapsed i {
  transform: rotate(0deg);
  transition: 0.3s ease;
}

/* When accordion is open */
.accordion .card-header button:not(.collapsed) i {
  transform: rotate(180deg);
  transition: 0.3s ease;
}
