
        .custom-list {
          list-style: none; /* Remove default bullets */
          padding: 0; /* Remove padding */
        }
  
        .custom-list li {
          position: relative; /* Position for custom bullet */
          padding-left: 20px; /* Space for custom bullet */
          margin-bottom: 10px; /* Space between items */
        }
  
        .custom-list li::before {
          content: '●'; /* Custom bullet */
          color: black; /* Bullet color */
          position: absolute; /* Positioning */
          left: 0; /* Align bullet to the left */
          font-size: 20px; /* Bullet size */
        }
