#your-total-cost-id {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin-top: 20px;
	text-align: center;
}

@media (max-width: 600px) {}

.package {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	margin: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

.package-header {
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 10px;
	border-radius: 8px 8px 0 0;
	font-size: 1.5em;
	font-weight: bold;
}

.features {
	list-style-type: none;
	padding: 0;
	margin: 20px 0;
	text-align: left;
}

.features li {
	font-size: 1em;
	margin: 8px 0;
	display: flex;
	align-items: center;
}

.features li::before {
	content: "✔";
	color: green;
	margin-right: 10px;
}

.features li.unavailable::before {
	content: "✖";
	color: red;
}

.package-footer {
	text-align: right;
}

.package-footer button {
	background-color: #ffdf64;
	color: #000;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-size: 1em;
	font-weight: bold;
	cursor: pointer;
	transition: background-color .3s ease;
}

.package-footer button:hover {
	background-color: #000;
	color: #fff;
}