body{
    font-family: sans-serif;
    background-image: linear-gradient(to right, #8B8ABB, #8AC59D);
  }
  img{
    width: 100px;
    height: 100px;
  }
  .container{
    display: grid;
  
  }
  .container__box{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px,1fr));
    gap: 15px;
  }
  .container .container__box .box{
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 6px #333;
    text-align: center;
    padding: 30px 40px;
  }
  
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    transition: .2s, linear;
  }
  .container__heading{
    text-align: center;
    padding-bottom: 25px;
    color: #e3e3e3;
    text-shadow: 0 0 10px black;
    font-size: 50px;
    font-weight: 600;
  }
  .container .container__box .box h3{
    color: #444;
    font-size: 20px;
    font-weight: 600;
  }
  .container .container__box .box p{
    font-size: 14px;
    font-weight: 100;
    color: #555;
  }
  .container .container__box .box a{
    border-radius: 10px;
    background:#444;
    color: white;
  }
  .container .container__box .box a:hover{
    background: #908080;
  }
  
  /* GST Info Section */
  .gst-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
  }
  
  .gst-info p {
    margin: 8px 0;
    color: #fff;
    font-size: 16px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
  
  .gst-info strong {
    color: #fff;
    font-weight: 700;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .container__heading {
      font-size: 36px;
      padding: 20px 15px;
    }
    
    .gst-info {
      padding: 15px;
      margin-bottom: 20px;
    }
    
    .gst-info p {
      font-size: 14px;
    }
    
    .container .container__box .box {
      padding: 20px 30px;
    }
  }
  
  @media (max-width: 576px) {
    .container__heading {
      font-size: 28px;
    }
    
    img {
      width: 80px;
      height: 80px;
    }
    
    .container .container__box .box h3 {
      font-size: 18px;
    }
    
    .container .container__box .box p {
      font-size: 13px;
    }
    
    .gst-info p {
      font-size: 13px;
    }
  }
  
  @media (max-width: 420px) {
    .container__heading {
      font-size: 24px;
    }
    
    img {
      width: 70px;
      height: 70px;
    }
    
    .container .container__box .box {
      padding: 15px 20px;
    }
  }
  