.dr1007catalogue {
	padding: 60px 30px;
	background: #fffaf0;
	text-align: center;
}

.dr1007catalogue section.menu {
	padding: 40px 0;
}

.dr1007catalogue section.menu h2 {
	font-size: 42px;
	margin-bottom: 25px;
	color: #cc5200;
}

.dr1007catalogue section.menu p {
	max-width: 1000px;
	margin: auto;
	line-height: 2;
	font-size: 22px;
	color: #333;
}

/* Flex container for cards */
.dr1007catalogue .menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

/* Card styles */
.dr1007catalogue .card {
	background: linear-gradient(135deg, rgba(135, 206, 235, 0.8),
		rgba(255, 223, 186, 0.8));
	border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	padding: 30px;
	width: 400px;
	transition: transform 0.3s ease;
	text-align: center;
}

.dr1007catalogue .card:hover {
	transform: scale(1.05);
}

.dr1007catalogue .card img {
	width: 100%;
	border-radius: 15px;
	margin-top: 15px;
}

.dr1007catalogue .card h3 {
	margin: 20px 0 10px 0;
	font-size: 28px;
	color: #222;
}

.dr1007catalogue .card p {
	font-size: 18px;
	color: #555;
}

/* WhatsApp Chat Button */
.dr1007catalogue .whatsapp-chat {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 28px;
	background-color: #25D366;
	color: white;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	font-size: 18px;
	transition: background-color 0.3s ease;
}

.dr1007catalogue .whatsapp-chat:hover {
	background-color: #1ebe5d;
}

/* Responsive Tweaks */
@media ( max-width : 900px) {
	.dr1007catalogue .card {
		width: 80%;
	}
}

@media ( max-width : 600px) {
	.dr1007catalogue section.menu h2 {
		font-size: 32px;
	}
	.dr1007catalogue section.menu p {
		font-size: 18px;
	}
	.dr1007catalogue .card {
		width: 100%;
		padding: 20px;
	}
}