    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family: Arial, Helvetica, sans-serif;
    }
    
    ul {
        list-style-type: disc;   /* Default solid circle */
        padding-left: 40px; /* Increase from default 40px */
    }
    
    h1 {text-align: center;}
    h2 {text-align: center;}
    
    body{
      background:#f4f7fb;
      padding:40px;
      color:#222;
    }

    .container{
      max-width:1200px;
      display: contents;
    }

    /* TOP SECTION */
    .top-section{
      display:grid;
      grid-template-columns: 1fr 4fr;
      gap:25px;
      margin-bottom:25px;
    }

    /* LOGO CARD */
    .logo-card{
      height:90%;
      width:90%;
      background:white;
      border-radius:20px;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 8px 20px rgba(0,0,0,0.08);
    }

    .logo-card img{
      display:block;
      height:95%;
      width:95%;
      object-fit:contain;
      border-radius:10px;
    }

    /* RIGHT TOP */
    .right-top{
      display:flex;
      flex-direction:column;
      gap:25px;
    }

    .banner{
      background:linear-gradient(135deg,#0d47a1,#1976d2);
      height:100px;
      border-radius:20px;
      color:white;
      display:flex;
      align-items:center;
      padding-left:40px;
      font-size:32px;
      font-weight:bold;
      box-shadow:0 8px 20px rgba(0,0,0,0.08);
    }

    .hero-text{
      background:white;
      border-radius:20px;
      padding:35px;
      min-height:95px;
      box-shadow:0 8px 20px rgba(0,0,0,0.08);
    }

    .hero-text h1{
      margin-bottom:10px;
      color:#111827;
    }

    .hero-text p{
      color:#555;
      line-height:1.6;
    }

    /* MIDDLE SECTION */
    .middle-section{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:25px;
      margin-bottom:25px;
    }

    .card{
      background:white;
      border-radius:20px;
      padding:30px;
      min-height:220px;
      box-shadow:0 8px 20px rgba(0,0,0,0.08);
      transition:0.3s;
    }

    .card:hover{
      transform:translateY(-5px);
    }

    .card h3{
      margin-bottom:15px;
      color:#1e293b;
    }

    .card p{
      color:#555;
      line-height:1.7;
    }
    
    /* GOVERNMENT SECTION */
    .government-section{
      background:white;
      border-radius:20px;
      padding:40px;
      min-height:140px;
      box-shadow:0 8px 20px rgba(0,0,0,0.08);
      justify-content: center; /* Horizontal */
        align-items: center;     /* Vertical */
    }
    

    .government-section p{
      line-height:1.7;
      color:#555;
    }

    /* BOTTOM SECTION */
    .bottom-section{
      background:white;
      border-radius:20px;
      padding:40px;
      min-height:140px;
      box-shadow:0 8px 20px rgba(0,0,0,0.08);
      text-align: center;
      font-weight: bold;
    }

    .bottom-section p{
      line-height:1.7;
      color:#555;
    }

    /* RESPONSIVE */
    @media(max-width:900px){

      .top-section{
        grid-template-columns:1fr;
      }

      .middle-section{
        grid-template-columns:1fr;
      }
      .government-section{
        grid-template-columns:1fr;
      }
      .bottom-section{
        grid-template-columns:1fr;
      }

      .banner{
        font-size:24px;
        padding-left:20px;
      }
    }
