.paket {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	border: 1px solid #ddd;
	padding: 20px;
	height: 100%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	/* Tambahkan margin-bottom untuk jarak antar card */
}

.paket h4 {
	margin: 10px 0;
	font-size: 18px;
	font-weight: bold;
}

.paket p {
	flex-grow: 1;
	margin-bottom: 10px;
	text-align: justify;
	/* membuat teks rata kanan kiri */
	line-height: 1.6;
	/* memberi jarak antar baris */
	font-size: 15px;
	/* ukuran font lebih nyaman dibaca */
	padding: 0 10px;
	/* sedikit padding kanan kiri */
	max-height: 60px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.paket img {
	width: 300px;
	height: 200px;
}

/* Media query untuk tampilan mobile */
@media (max-width: 767px) {
	.paket {
		margin-bottom: 15px;
		/* Mengatur jarak antar card pada tampilan mobile */
	}

	.col-lg-4,
	.col-sm-6 {
		margin-bottom: 15px;
		/* Menambahkan margin bawah untuk kolom di mobile */
	}
}

.paket-button {
	margin-top: 20px;
	display: inline-flex;
	align-items: center;
	border: 1px solid #999999;
	padding: 10px 0;
	text-decoration: none;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	font-size: 14px;
	color: black;

	/* margin-bottom: -30px;
    border: 1px solid #999999;
    border-radius: 0;
    color: #000; */
	/* display: flex; */
	align-items: center;
}

.paket-button span {
	padding: 0 20px;
	color: black;
	font-weight: bold;
}

.paket-button .icon {
	background: linear-gradient(to right, #4fc3f7, #00c6ff);
	padding: 15px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.paket-button .icon::after {
	content: "→";
	font-size: 16px;
	color: black;
}

/* Review dan bintang sejajar */
.review {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 10px;
}

.review p {
	margin: 0;
	color: black;
	font-weight: bold;
	font-size: 15px;
}

.stars {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.stars i {
	color: #ffd700;
	/* Warna kuning emas untuk bintang */
	font-size: 14px;
}

/* Harga dan ikon sejajar */
.price {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 10px 0;
}

.price svg {
	width: 20px;
	height: 20px;
	fill: #ff0000;
}

.price span {
	color: #ff0000;
	font-weight: bold;
	font-size: 16px;
}

.genric-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* padding: 12px 20px; */
	font-size: 16px;
	/* Perbesar teks */
	font-weight: bold;
	text-decoration: none;
	border-radius: 30px;
	background-color: #17a2b8;
	color: #fff;
	border: none;
	transition: background-color 0.3s ease;
}

.genric-btn:hover {
	background-color: #138496;
	color: #fff;
}

.genric-btn span {
	margin-left: 8px;
	font-size: 18px;
	/* Perbesar teks span */
}

.genric-btn svg {
	width: 18px;
	height: 18px;
	margin-left: 5px;
	fill: currentColor;
	/* gunakan warna teks */
}
