.widget-title {
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin-top: 1.5rem;
	text-align: left;
	border-bottom: 1px solid #f5f5f5;
	margin-bottom: 0;
	padding-bottom: 4px;
}

.appointment-card {
	max-width: 900px;
	margin: 30px auto 30px;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 32px;
	border-radius: 16px;
	background: #f3f3f3;
	border: 1px solid #e9e9e9;
	 
	.icon {
		width: 72px;
		height: 72px;
		border-radius: 50%;
		background: #f8bcbc;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}

	.content h2 {
		margin: 0 0 12px;
		font-size: 28px;
		color: #222;
	}

	.content p {
		margin: 0 0 20px;
		color: #555;
		line-height: 1.6;
		max-width: 620px;
	}

}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #e53935;
	color: #fff;
	border: none;
	padding: 14px 24px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.cta-btn:hover {
	background: #d32f2f;
	transform: translateY(-2px);
	color: #fff;
}