body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-color: #fff8e1;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.header-container {
    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: white;
}

/* 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: white;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    margin-top: auto;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
}

.info-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: #fdfdfd;
  }
  
  .container {
    flex: 1 1 500px;
    max-width: 600px;
    padding: 25px;
    background: #ffebee;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: justify;
    line-height: 1.7;
    font-size: 17px;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .gmap {
    flex: 1 1 400px;
    max-width: 600px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  
  /* Optional Responsive Enhancements */
  @media (max-width: 768px) {
    .container, .gmap {
      max-width: 100%;
      padding: 15px;
    }
  
    .info-block {
      padding: 10px;
      margin-bottom: 55px;
    }
  }
  