.content {
	min-height: calc(100vh - 75px - 247px); /* Ensures the content will always fill the height of the viewport */
	background-color: #4346da;
    color: #fff;
    text-align: center;
    margin-top: 75px;
	flex-grow: 1; /* This makes the content section expand to fill the space */
	display: flex;
	flex-direction: column;
	padding: 16px;
	align-items: center;
}

.logo {
	width: 320px;
	margin: 20px auto;
}

h1 {
	font-size: 28px;
	color: #fff;
}

p {
	font-size: 18px;
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.6;
}

.cta-whatsapp {
	display: inline-flex;
	align-items: center;
	background-color: #4f80ff; /* Same background as your CTA */
	color: #fff;
	padding: 16px 32px;
	border-radius: 8px;
	font-weight: bold;
	text-decoration: none;
	font-size: 16px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Similar box shadow */
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: background-color 0.3s ease;
	height: 36px;
	max-width: 400px;
}

.cta-whatsapp:hover {
	background-color: #3b6ddb; /* Darker blue on hover */
}

.cta-whatsapp img {
	width: 25px;
	height: 25px;
	margin-right: 16px;
}

.card-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
	padding: 24px;
}

.card {
	background-color: #fff;
	color: #333;
	width: 250px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	text-align: center;
}

.card-title {
	font-size: 20px;
	color: #394CFF;
	font-weight: bold;
	margin-bottom: 10px;
}

.card-details {
	font-size: 16px;
	color: #555;
	margin-bottom: 10px;
}

.footer {
	padding: 20px 0;
	background-color: #252240;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 600px) {
	.logo {
		width: 200px;
	}

	.card-container {
		flex-direction: column;
		align-items: center;
	}

	.cta-whatsapp {
		font-size: 14px;
		padding: 8px 20px;
		max-width: 320px;
	}

	.cta-whatsapp img {
		width: 25px;
		height: 25px;
	}
}