/* Reset dan dasar */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Poppins', Arial, sans-serif;
      background-color: #f4f4f4;
      display: flex;
      justify-content: center;
      color: #222;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      background-color: #fff;
      margin: 20px 0;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    /* Header: Logo + Navigation */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #111;
      color: white;
      padding: 20px 40px;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .logo img {
      max-height: 48px;
      width: auto;
      display: inline-block;
      vertical-align: middle;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    nav ul li a {
      text-decoration: none;
      color: white;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav ul li a:hover {
      color: #00adb5;
    }

    /* Banner */
    .banner {
      background: linear-gradient(to right, #222, #333);
      color: white;
      text-align: center;
      padding: 80px 20px;
      font-size: 1.8rem;
      letter-spacing: 1px;
      font-weight: 600;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

    /* Intro Section */
    .intro {
      text-align: center;
      padding: 40px 20px;
      background-color: #fafafa;
      border-bottom: 1px solid #eee;
    }

    .intro h2 {
      font-size: 1.6rem;
      margin-bottom: 10px;
    }

    .intro p {
      font-size: 1rem;
      color: #555;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Box Section */
    .boxes {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 40px;
      gap: 20px;
    }

    .box {
      flex: 1 1 calc(33.333% - 20px);
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      text-align: center;
      padding: 50px 20px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .box:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      border-color: #00adb5;
    }

    .box img {
      width: 100%;
      /* height: 120px; */
      object-fit: cover;
      object-position: center;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      display: block;
      transition: height 0.25s ease;
    }

    .banner img {
        margin-left:auto;
        margin-right: auto;
        width: 38%;
    }

    /* Footer */
    footer {
      background-color: #111;
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }

    /* Responsif */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        gap: 15px;
      }

      .boxes {
        flex-direction: column;
        padding: 20px;
      }

      .box {
        flex: 1 1 100%;
      }

      .box img {
        height: 100px;
      }

      .logo img {
        max-height: 40px;
      }
    }

    /* Make all images responsive and block-level to avoid overflow */
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }