
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Poppins', sans-serif;
    }

    body{
      background:#f8f8fb;
      color:#1c1c1c;
    }

    .container{
      width:90%;
      max-width:1200px;
      margin:auto;
    }

    /* ================= NAVBAR ================= */

    header{
      width:100%;
      background:white;
      padding:20px 0;
      box-shadow:0 2px 10px rgba(0,0,0,0.03);
      position:sticky;
      top:0;
      z-index:100;
    }

    nav{
      display:flex;
      justify-content:space-between;
      align-items:center;
    }

    /* LOGO */

    .logo{
      display:flex;
      align-items:center;
      gap:15px;
    }

    .logo-img{
      width:120px;
      height:auto;
      object-fit:contain;
    }

    .logo-text h2{
      font-size:28px;
      color:#243b9f;
      line-height:1;
    }

    .logo-text span{
      font-size:14px;
      color:#777;
      letter-spacing:4px;
    }

    /* MENU */

    .menu{
      display:flex;
      gap:40px;
      list-style:none;
    }

    .menu a{
      text-decoration:none;
      color:#111;
      font-weight:500;
      transition:0.3s;
    }

    .menu a:hover,
    .menu .active{
      color:#5b43f3;
    }

    /* ================= HERO ================= */

    .hero{
      margin-top:40px;
      background:linear-gradient(135deg,#5b43f3,#7b68ff);
      border-radius:30px;
      padding:70px 50px;
      color:white;
      text-align:center;
    }

    .hero h1{
      font-size:60px;
      margin-bottom:20px;
    }

    .hero p{
      max-width:800px;
      margin:auto;
      line-height:1.9;
      font-size:16px;
    }

    /* ================= PROGRAM ================= */

    .program-section{
      padding:100px 0;
    }

    .section-title{
      text-align:center;
      margin-bottom:60px;
    }

    .section-title h2{
      font-size:45px;
      color:#1b237e;
      margin-bottom:15px;
    }

    .section-title p{
      color:#666;
      max-width:700px;
      margin:auto;
      line-height:1.8;
    }

    .program-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
      gap:30px;
    }

    .program-card{
      background:white;
      border-radius:25px;
      overflow:hidden;
      box-shadow:0 10px 25px rgba(0,0,0,0.06);
      transition:0.3s;
    }

    .program-card:hover{
      transform:translateY(-5px);
    }

    .program-card img{
      width:100%;
      height:220px;
      object-fit:cover;
    }

    .program-content{
      padding:30px;
    }

    .program-content h3{
      font-size:28px;
      color:#1b237e;
      margin-bottom:15px;
    }

    .duration{
      display:inline-block;
      background:#f3f1ff;
      color:#5b43f3;
      padding:8px 18px;
      border-radius:30px;
      font-size:14px;
      margin-bottom:20px;
      font-weight:600;
    }

    .program-content p{
      color:#666;
      line-height:1.8;
      margin-bottom:20px;
    }

    .program-content ul{
      padding-left:20px;
      color:#555;
      line-height:1.8;
    }

    .program-content li{
      margin-bottom:8px;
    }

    /* ================= FOOTER ================= */

    footer{
      margin-top:50px;
      background:#1b237e;
      color:white;
      padding:30px 0;
    }

    .footer-content{
      display:flex;
      justify-content:space-between;
      align-items:center;
      flex-wrap:wrap;
      gap:20px;
    }

    footer a{
      color:white;
      text-decoration:none;
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width:992px){

      .hero h1{
        font-size:45px;
      }

    }

    @media(max-width:768px){

      nav{
        flex-direction:column;
        gap:20px;
      }

      .menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
      }

      .hero{
        padding:50px 25px;
      }

      .hero h1{
        font-size:38px;
      }

      .section-title h2{
        font-size:35px;
      }

      .logo-img{
        width:90px;
      }

    }