html {
	box-sizing: border-box;
	overflow: hidden;
}

body {
	font-family: 'Arial', sans-serif;
	background-image: url('/assets/parkmycar/images/billing-lp1.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	height: 100vh;
	margin: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 0;
}

.card {
	background-color: rgba(255, 255, 255, 0.95);
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	z-index: 1;
	max-width: 550px;
	width: 100%;
	padding: 20px;
	font-size: 14px;
	margin: 0 auto;
}

.secure-section {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.secure-icon {
	font-size: 1.5rem;
	color: #333;
	/* Dark gray */
	margin-right: 8px;
}

.secure-text {
	font-size: 1rem;
	color: #555;
	font-weight: bold;
	margin: 0;
}

.trusted-icons {
	margin-top: 10px;
	text-align: center;
}

.trusted-icons img {
	width: 60px;
	margin-right: 8px;
}


.membership {
	font-size: 1.25rem;
	font-weight: bold;
	padding-right: 20px;
}

.price {
	font-size: 1.5rem;
	font-weight: bold;
	color: #28a745;
	margin-bottom: 10px;
}

.modern-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.rating-stars i {
	font-size: 1.2rem;
	color: #f1c40f;
	margin-right: 4px;
}

.rating-number {
	font-size: 1rem;
	color: #555;
	font-weight: bold;
}

.card-header {
	font-size: 1.3rem;
	font-weight: bold;
	color: #28a745;
}

.payment-options {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	width: auto;
}

@media (max-width: 768px) {
	.card {
		padding: 15px;
		max-width: 100%;
	}

	.secure-icon {
		font-size: 1.3rem;
	}

	.price {
		font-size: 1.8rem;
	}

	.trusted-icons img {
		width: 35px;
		margin-right: 5px;
	}

	.rating-stars i {
		font-size: 1rem;
	}

	.rating-number {
		font-size: 0.9rem;
	}
}

.success-message {
	font-size: 18px;
	color: #555;
}

.recommendation-text {
	font-size: 0.9rem;
	color: #333;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.card {
		padding: 15px;
		max-width: 100%;
	}

	h4 {
		font-size: 1.2rem;
	}

	.success-message {
		font-size: 16px;
	}

	.recommendation-text {
		font-size: 0.8rem;
		margin-bottom: 15px;
	}

	.btn-primary {
		width: 100%;
		/* Make the button full width on mobile */
		font-size: 16px;
	}
}




.pay-by-phone a {
	display: block;
	width: 100%;
	text-align: center;
	border: none;
	color: #111;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 0;
	border-radius: 23px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	text-decoration: none;
}

.pay-by-phone a:hover {
	background-color: #ffbb00;
}