* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #f3f4f6;
      color: #111827;
      min-height: 100vh;
    }

    /* NAVBAR */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: #845b47;
      color: #e5e7eb;
    }

    .nav-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0.75rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      color: #e5e7eb;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 1rem;
    }

    .nav-links a {
      text-decoration: none;
      color: #e5e7eb;
      font-size: 0.9rem;
    }

    .nav-links a:hover {
      text-decoration: underline;
    }

    /* HAMBURGER (mobile) */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid #4b5563;
      background: #845b47;
      cursor: pointer;
      padding: 0 8px;
    }

    .hamburger-line {
      height: 2px;
      width: 100%;
      border-radius: 999px;
      background: #e5e7eb;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .hamburger[aria-expanded="true"] .line-1 {
      transform: translateY(6px) rotate(45deg);
    }

    .hamburger[aria-expanded="true"] .line-2 {
      opacity: 0;
    }

    .hamburger[aria-expanded="true"] .line-3 {
      transform: translateY(-6px) rotate(-45deg);
    }

    /* OVERLAY + DRAWER */
    .backdrop {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.5);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
      z-index: 40;
    }

    .backdrop.show {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-drawer {
      position: fixed;
      inset: 0 0 0 auto;
      width: 260px;
      max-width: 80%;
      background: #845b47;
      color: #e5e7eb;
      transform: translateX(100%);
      transition: transform 0.25s ease-out;
      z-index: 50;
      padding: 1rem 1rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .mobile-drawer.show {
      transform: translateX(0);
    }

    .mobile-drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.5rem;
    }

    .mobile-drawer-title {
      font-size: 0.95rem;
      font-weight: 600;
    }

    .close-drawer {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      border: 1px solid #4b5563;
      background: #845b47;
      color: #e5e7eb;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    .mobile-drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      font-size: 0.9rem;
    }

    .mobile-drawer-nav a {
      text-decoration: none;
      color: #e5e7eb;
      padding: 0.4rem 0;
    }

    .mobile-drawer-nav a:last-child {
      border-bottom: none;
    }

    .mobile-drawer-nav a:hover {
      text-decoration: underline;
    }

    /* KONTEN UTAMA */
    main {
      max-width: 1100px;
      margin: 0 auto;
      padding: 1.5rem 1rem 2.5rem;
    }

    h1 {
      font-size: 1.4rem;
      margin-bottom: 0.25rem;
    }

    .subtitle {
      font-size: 0.95rem;
      color: #4b5563;
      margin-bottom: 1.5rem;
      max-width: 40rem;
    }

    .grid-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 kolom per baris */
      gap: 1.25rem;
      justify-content: center;
    }

    .card {
      background: #ffffff;
      border-radius: 0.75rem;
      border: 1px solid #e5e7eb;
      padding: 1.3rem 1rem 1.6rem;
      box-shadow: 0 10px 15px rgba(15, 23, 42, 0.04);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.6rem;
      min-width: 190px;
    }

	.card-logo img {
	  width: 100%; /* Make the image take up the full width of the container */
	  height: auto; /* Maintain the aspect ratio of the image */
	  max-width: 180px; /* Set a maximum width (this can be adjusted as needed) */
	  max-height: 91px; /* Set a maximum height (adjustable) */
	  object-fit: contain; /* Ensure the image fits within the box without distortion */
	}

    .card-title {
      font-size: 0.95rem;
      font-weight: 600;
    }

    .card-actions {
      margin-top: 0.4rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      align-items: center;
      width: 100%;
    }

    .btn-link {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 75%; /* Tombol mengisi 75% lebar kolom */
      padding: 0.45rem 1.4rem;
      font-size: 0.85rem;
      font-weight: 500;
      text-decoration: none;
      border-radius: 999px;
      border: 1px solid #845b47;
      background: #845b47;
      color: #f9fafb;
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
      text-align: center;
    }

    .btn-link:hover {
      background: #f9fafb;
      color: #845b47;
      box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
      transform: translateY(-1px);
    }
    
    
    
    .btn-link2 {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 75%; /* Tombol mengisi 75% lebar kolom */
      padding: 0.45rem 1.4rem;
      font-size: 0.85rem;
      font-weight: 500;
      text-decoration: none;
      border-radius: 999px;
      border: 1px solid #6ba61d;
      background: #6ba61d;
      color: #6ba61d;
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
      text-align: center;
    }
    

    @media (max-width: 768px) {
      .grid-cards {
        grid-template-columns: 1fr;
      }

      .btn-link {
        width: 90%; /* Tombol mengisi 90% lebar kolom di mobile */
      }

      .hamburger {
        display: flex;
      }

      nav {
        display: none;
      }
    }