/* .container {
    max-width: 1200px;
    margin: 20px auto;
    text-align: center;
  } */
  
  /* Title Styling */
  h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 30px;
    text-align: center;
  }
  
  /* Grid Layout */
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  /* Facility Box Styling */
  .facility {
    border: 1px solid #cccccc;
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Icon Styling */
  .facility img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  
  /* Text Styling */
  .facility p {
    font-size: 14px;
    color: #333333;
    margin: 0;
    line-height: 1.5;
  }