.bg-button-group {
    display: flex;
    gap: 10px; /* Space between buttons */
    flex-wrap: wrap; /* Wrap to next line on small screens */
}

.bg-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.bg-button i {
    margin-right: 8px; /* Space between icon and text */
}

.bg-button:hover {
    background-color: #005177;
}




.card-links-container {
    display: flex;
     flex-wrap: wrap;
    justify-content: center; /* centers items horizontally */
  }
  
  .card-link-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1rem 2rem;
    /*   grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    grid-column-gap: 6px;
    grid-row-gap: 6px; */
  /*   background-color: white; */
    justify-content: center; /* centers items horizontally */
    align-items: center; /* centers items vertically */
  }
  
  
  .card-link {
 
    height: auto;
    cursor: pointer;
    border-radius: 6px;
    background-color: rgb(199, 216, 254);
    padding: 1rem 1.75rem;
    text-align: center;
    font-size: 20px;
    line-height: .25rem;
    font-weight: 500;
    color: rgb(20, 20, 20);
    text-decoration: none;
  }
  
  .card-link:hover  {
	
    background-color: rgb(54 104 186);
    color: white;
  }
  
  .card-link h4 {
    font-size: 20px;
  }

