
  /* Common circle styling */
  .btn-lg-square {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #28a745; /* green circle */
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 10px;
    transition: all 0.3s ease;
  }

  .btn-lg-square i {
    font-size: 1.5rem;
    color: #fff;
  }

  /* Make icons smaller on mobile */
  @media (max-width: 768px) {
    .btn-lg-square {
      width: 400px;
      height: 40px;
      min-width: 40px;
      min-height: 40px;
      margin-right: 0.8rem;
    }

    .btn-lg-square i {
      font-size: 1.2rem;
    }

    .d-flex.align-items-center {
      justify-content: flex-start;
    }

    .col-6 {
      width: 50%;
      margin-bottom: 1rem;
    }
  }

  /* Align text neatly beside icon */
  .d-flex.align-items-center > div:last-child p,
  .d-flex.align-items-center > div:last-child h6 {
    margin: 0;
    line-height: 1.2;
  }


  /* Keep existing styles and add/modify below */
