.page {
    display: flex;
    justify-content: center; /* Centers the content horizontally */
    align-items: flex-start; /* Aligns items at the start of the flex container */
  }
  
  .info-container {
    padding-bottom: 20px;
  }
  .paper {
    width: 100%; /* Adjust as needed */
    display: flex;
    flex-wrap: wrap; /* Items wrap to new rows */
    gap: 16px; /* Adjust the gap between cards */
  }
  
  .card {
    width: calc(25% - 16px); /* Adjust based on your padding and spacing */
    margin-bottom: 16px; /* Adjust spacing between items */
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }

  .card a {
    text-decoration: none;
    color: #000;
  }
  
  .card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .card-img-top {
    max-height: 200px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .card-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.primary {
    color: #fff;
    background-color: #007bff; /* Primary button color */
}

.light {
    color: #007bff; /* Text color similar to primary */
    background-color: #f8f9fa; /* Light background color */
    border: 1px solid #007bff; /* Border similar to primary */
}

/* Hover effect */
.button:hover {
    opacity: 0.8;
}