body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
  }
  
  .awards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 100vh;
    max-width: 1560px; /* Limit the container width */
    margin: 0 auto; /* Center the container */
  }
  
  .award {
    width: calc(33.33% - 40px); /* 3 awards in a row, with margin */
    margin: 20px;
    max-width: 500px;
  }
  
  .award-content {
    background-color: white;
    border-radius: 100px;
    box-shadow: 0px 5px 10px #2EB3E2;
    max-height: 500%;
  }
  
  .award-content:hover {
    box-shadow: 5px 5px 5px 5px rgba(4, 166, 195, 0.425);
    border-radius: 5px;
  }
  
  .award-content img {
    width: 100%;
    padding: 10px;
    margin: 1px;
    border-radius: 10px 10px 0 0;
  }
  
  .bag-content {
    margin: auto; /* Center container horizontally */
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 5px 10px #2EB3E2;
    overflow: hidden;
    max-height: 300%;
  }
  
  .bag-content {
    position: relative;
    width: 100%;
    justify-content: center; /* Center the container content */
    align-items: center; /* Center the container content */
  }
  
  .slider-container {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 100%; /* Set container width */
    flex-shrink: 0;
  }
  
  .slider-container img {
    width: 100%; /* Set width to fit the container */
    max-width: 400px; /* Optional: ensure images don't grow too large */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the image fits nicely */
    flex-shrink: 0; /* Prevent shrinking */
    display: block;
  }
  
  .award-details {
    margin-top: 20px; /* Adjust based on your layout */
  }
  
  .bag-content:hover {
    box-shadow: 5px 5px 5px 5px rgba(4, 166, 195, 0.425);
    border-radius: 5px;
  }
  
  .bag-content img {
    width: 100%;
    padding: 10px;
    margin: 1px;
    border-radius: 10px 10px 0 0;
  }
  
  .award-details {
    padding: 20px;
    min-height: 250px;
    text-align: center;
  }


  
  .award-details h2 {
    font-size: 1.5rem;
    margin: 10px 0;
  }
  
  .award-details p {
    font-size: 1rem;
    color: #555;
    font-weight: bold;
  }
  
  .page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 210px 0 80px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(/award/award\ banner.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }




  /* Responsive adjustments */
  @media screen and (max-width: 1024px) {
    .award {
      width: calc(50% - 40px); /* Two awards in a row, with margin */
    }
  }
  
  @media screen and (max-width: 768px) {
    .award {
      width: calc(100% - 40px); /* One award in a row, with margin */
    }
  }
  