
    html, body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #f5f5f5;
    }

    .wrapper {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    .page-hero {
      background-image: url('assets/images/abms.png');
      background-size: cover;
      background-position: center;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .overlay {
      background: rgba(0, 0, 0, 0.4);
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .overlay h1 {
      color: #fff;
      font-size: 36px;
      font-weight: bold;
    }

    .act-layout {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 20px;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      align-items: start;
    }

  /* Sidebar dengan background gradient Safwa */
.act-sidebar.with-bg {
  background: linear-gradient(to bottom right, #b90000, #ff4d4d); /* gradient merah Safwa */
  border-radius: 16px; /* border lebih lembut */
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* bayang cantik */
  height: 40%;
  position: relative;
  align-self: flex-start;
}

/* Isi kandungan sidebar */
.sidebar-content {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
}

/* Senarai menu dalam sidebar */
.act-sidebar ul li {
  font-size: 15px;
  color: #fff;
  padding: 6px 0 6px 20px;
  margin-bottom: 6px;
  position: relative;
  transition: background 0.3s ease, padding-left 0.3s ease; /* efek hover smooth */
}

/* Hover dan active menu item */
.act-sidebar ul li:hover,
.act-sidebar ul li.active {
  color: #fff;
  background-color: rgba(255,255,255,0.15);
  border-left: 3px solid #fff;
  font-weight: bold;
  border-radius: 6px;
  padding-left: 24px; /* lebih dalam bila hover */
}



    .sidebar-content h3 {
      font-size: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.3);
      padding-bottom: 10px;
      margin-bottom: 20px;
    }

    .sidebar-content ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .sidebar-content ul li {
      font-size: 15px;
      padding: 8px 0 8px 20px;
      position: relative;
      color: #fff;
      cursor: pointer;
    }

    .sidebar-content ul li::before {
      content: "\f0da";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
    }

    .sidebar-content ul li:hover,
    .sidebar-content ul li.active {
      background-color: rgba(255,255,255,0.1);
      border-left: 3px solid #fff;
      font-weight: bold;
      border-radius: 6px;
    }

    .act-content {
      padding: 0 10px;
    }

    .act-section {
      background: rgba(255, 255, 255, 0.95);
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
      margin-bottom: 30px;
      display: none;
    }

    .act-section.show {
      display: block;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .section-header h2 {
      font-size: 22px;
      color: #b90000;
      margin: 0;
    }

    .download-btn {
      background-color: #b90000;
      color: white;
      padding: 10px 16px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: bold;
      text-decoration: none;
    }

    .act-content img {
      display: block;
      max-width: 100%;
      border-radius: 8px;
      margin-top: 10px;
    }

   @media (max-width: 768px) {
  .act-layout {
    grid-template-columns: 1fr;
    padding: 0 15px;
    gap: 30px;
  }

  .act-sidebar.with-bg {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .sidebar-content {
    padding: 20px;
  }

  .sidebar-content h3 {
    font-size: 18px;
    text-align: center;
  }

  .sidebar-content ul li {
    font-size: 14px;
    padding-left: 20px;
  }

  .act-content {
    padding: 0 5px;
  }

  .act-section {
    padding: 20px;
    margin-bottom: 20px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .download-btn {
    font-size: 13px;
    padding: 8px 14px;
  }

  .overlay h1 {
    font-size: 28px;
    padding: 0 10px;
    text-align: center;
  }
}
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center 40%; /* Turun sikit ke bawah supaya nampak kepala */
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}


.page-hero .overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero h1 {
  color: white !important;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  z-index: 2;
}
.hero-title-spacing {
  padding-top: 130px;

	