 .alasan-section {
      padding: 20px 20px;
      text-align: center;
    }

    .section-title {
      font-size: 32px;
      margin-bottom: 40px;
      color: white;
    }


    .alasan-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* Selalu 3 kolom */
      gap: 30px;
      justify-items: center;
      min-width: 960px; /* Minimum lebar agar 3 kolom tidak turun */
      padding-bottom: 10px;
    }

    .alasan-item {
      background-color: #fff;
      border-radius: 5px;
      padding: 10px;
      width: 250px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .alasan-item:hover {
      transform: translateY(-5px);
    }

    .alasan-item img {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
    }

    .alasan-item h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #007BFF;
    }

    .alasan-item p {
      font-size: 16px;
      color: #555;
    }

    /* Optional: hilangkan scrollbar default di beberapa browser */
    .alasan-grid-wrapper::-webkit-scrollbar {
      height: 8px;
    }

    .alasan-grid-wrapper::-webkit-scrollbar-thumb {
      background-color: #ccc;
      border-radius: 4px;
    }