.dr1015requestcatalogue {
	/* container styles if needed */
	
}

/* Target the section with id 'filerequest' inside '.dr1015requestcatalogue' */
.dr1015requestcatalogue #filerequest {
	background: #b22222; /* rich red */
	color: #fff;
	padding: 40px 20px;
	text-align: center;
	border-radius: 15px;
	max-width: 600px;
	margin: 40px auto;
	font-family: Arial, sans-serif;
}

.dr1015requestcatalogue #filerequest h2 {
	font-size: 2.4rem;
	margin-bottom: 16px;
}

.dr1015requestcatalogue #filerequest p {
	font-size: 1.2rem;
	margin-bottom: 30px;
}

.dr1015requestcatalogue .whatsapp-btn {
	background: #25d366; /* WhatsApp green */
	color: white;
	font-weight: 700;
	padding: 15px 40px;
	font-size: 1.3rem;
	border-radius: 50px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
	transition: background 0.3s ease;
}

.dr1015requestcatalogue .whatsapp-btn:hover, .dr1015requestcatalogue .whatsapp-btn:focus-visible
	{
	background: #128c4a;
	outline: none;
	box-shadow: 0 8px 24px rgba(18, 140, 74, 0.8);
}

/* SVG Icon */
.dr1015requestcatalogue .whatsapp-btn svg {
	display: block;
}

/* Responsive */
@media ( max-width : 480px) {
	.dr1015requestcatalogue #filerequest {
		padding: 30px 15px;
	}
	.dr1015requestcatalogue #filerequest h2 {
		font-size: 1.8rem;
	}
	.dr1015requestcatalogue #filerequest p {
		font-size: 1rem;
	}
	.dr1015requestcatalogue .whatsapp-btn {
		font-size: 1.1rem;
		padding: 12px 32px;
	}
}