body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff0f5;
    color: #333;
  }
  
  .container {
    text-align: center;
    padding: 40px 20px;
  }
  
  h1 {
    
    color: rgb(8, 8, 8);
    font-size: 28px;
    margin-bottom: 5px;
  }
  
  h2 {
    color: #cc9900;
    font-size: 20px;
    margin-bottom: 40px;
  }
  
  .award-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    justify-items: center;
    background: #f8f9fa;
    margin: 5px;
    margin-bottom: 10px;
  }
  
  .award-card {
    background: linear-gradient(to bottom right, #ffe4ec, #fdf7f8);
    border: 1px solid #e5a1b2;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  .award-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .award-card p {
    margin-top: 12px;
    font-weight: 600;
    font-size: 15px;
    color: #4b4b4b;
    line-height: 1.4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  

  .header-container {
    background-color: #edb79d;
    /* background-color: #701f1f; */
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    flex-wrap: wrap;
  }
  
  .header-container h3 {
    margin: 0;
    font-size: 18px; /* Smaller size for ग्रामपंचायत आळसंद */
    font-weight: normal;
  }
  
  .header-container h1 {
    flex: 1;
    text-align: center;
    font-size: 26px; /* Main title is bigger */
    font-weight: bold;
    margin: 0;
  }
  
  /* Responsive Image */
  .header-container img {
    width: 60px;  /* Smaller image */
    height: auto;
    max-width: 100%;
  }
  
  a {
    text-decoration: none;
    color: black;
  }
  
  /* Responsive Design for Smaller Screens */
  @media screen and (max-width: 768px) {
    .header-container h3 {
      margin: 5px;
      width: 10px;
      font-size: 10px; /* Even smaller for tiny screens */
    }
    
    .header-container h1 {
        font-size: 15px; /* Adjust main title */
      }
      
      .header-container img {
        width: 30px; /* Reduce image size further */
    }
  }
  
  footer {
    /* background-color: #701f1f; */
    color: black;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    margin-top: auto;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    /* background-color: #f08c53; */
    background-color: #f08c53;
  }