.nengah{
	display: flex;
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically (optional) */
    gap: 10px; /* Space between items (optional) */
    padding: 10px; /* Padding around the container (optional) */
}

.sikilku {
            background-color: #00AEEF; /* Background biru kalem */
			color: #F0F0F0; /* Teks utama */
			padding: 20px 0;
			font-size: 14px;
        }

        .sikilku-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .sikilku-column {
            flex: 1;
            min-width: 200px;
            margin: 10px 20px;
        }

        .sikilku-column h3 {
            margin-bottom: 15px;
			font-weight: bold;
			border-bottom: 1px solid #004A6E; /* Border biru tua */
			padding-bottom: 5px;
			color: #004A6E; /* Warna judul kolom */
        }

        .sikilku-column a {
            color: #E0E0E0; /* Warna teks link */
			text-decoration: none;
			display: block;
			margin: 5px 0;
        }

        .sikilku-column a:hover {
            color: #5EC8E0; /* Warna hover link */
        }

        .sikilku-bottom {
            text-align: center;
			margin-top: 20px;
			font-size: 12px;
			color: #E0E0E0; /* Warna teks bawah */
        }

        .social-icons {
			margin-top: 15px;
			display: flex;
			gap: 10px; /* Memberikan jarak antar ikon */
		}

		.social-icons img {
			width: 24px;
			height: 24px;
			transition: transform 0.3s;
			display: inline-block;
		}

		.social-icons img:hover {
			transform: scale(1.1);
		}