/* Reset dan asas */
  body {
    margin: 0;
    font-family: sans-serif;
    scroll-behavior: smooth;
  }

  /* Ruang luar pada keseluruhan section */
  #projek-kategori {
    padding: 20px 40px;
  }

  .projek-container {
    display: flex;
  }

  /* Sidebar Fixed dengan padding lebih luas */
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background-color: #f4f4f4;
    padding: 40px 30px; /* padding atas/bawah 40px, kiri/kanan 30px */
    overflow-y: auto;
    border-right: 1px solid #ccc;
    box-shadow: 2px 0 5px rgba(0,0,0,0.05);
  }

  .sidebar h2,
  .sidebar h3 {
    margin-top: 0;
  }

  .sidebar ul {
    list-style: none;
    padding-left: 0;
  }

  .sidebar ul li {
    margin-bottom: 12px;
  }

  .sidebar ul li a {
    text-decoration: none;
    color: #333;
  }

  .sidebar ul li a:hover {
    color: #007bff;
  }

  /* Kandungan sebelah kanan dengan padding kiri dan kanan */
  .content {
    /* margin-left: 271px; */
    /* padding: 24px -20px; */
    flex: 1;
  }

  h2 {
    margin-top: 0;
  }

  /* Projek grid */
  .projek-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .projek-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }

  .projek-item:hover {
    transform: translateY(-5px);
  }

  .projek-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .projek-item p {
    padding: 15px;
    font-size: 15px;
    line-height: 1.6;
  }

  /* Responsif */
  @media (max-width: 768px) {
    .projek-list {
      grid-template-columns: 1fr;
    }
    .content {
      margin-left: 0;
      padding: 10px 20px;
    }
    .sidebar {
      position: relative;
      width: 100%;
      height: auto;
      border-right: none;
      box-shadow: none;
      padding: 20px 15px;
    }
    #projek-kategori {
      padding: 10px 20px;
    }
  }