.modern-benefits-section {
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		padding: 5px 0;
		text-align: center;
		color: white;
	}

	.modern-title {
		font-size: 2.2rem;
		font-weight: 700;
		margin-bottom: 5px;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	}

	.modern-subtitle {
		font-size: 1.1rem;
		opacity: 0.9;
		margin-bottom: 5px;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}

	.benefit-item {
		background: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(10px);
		border-radius: 15px;
		padding: 10px;
		margin-bottom: 5px;
		transition: all 0.3s ease;
		border: 1px solid rgba(255, 255, 255, 0.2);
		height: 100%;
	}

	.benefit-item:hover {
		transform: translateY(-5px);
		background: rgba(255, 255, 255, 0.15);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	}

	.benefit-content {
		display: flex;
		align-items: center;
		text-align: left;
		gap: 2px;
	}

	.benefit-icon {
		font-size: 2.5rem;
		font-weight: 600;
		background: rgba(255, 255, 255, 0.2);
		border-radius: 50%;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		transition: all 0.3s ease;
	}

	.benefit-item:hover .benefit-icon {
		background: rgba(255, 255, 255, 0.3);
		transform: scale(1.1);
	}

	.benefit-text {
		flex-grow: 1;
	}

	.benefit-text h3 {
		font-size: 1.3rem;
		font-weight: 600;
		margin-bottom: 2px;
	}

	.benefit-text p {
		font-size: 0.9rem;
		opacity: 0.9;
		margin: 0;
		line-height: 1.2;
	}


	/* Responsive design */
	@media (max-width: 768px) {
		.modern-title {
			font-size: 1.8rem;
		}

		.benefit-content {
			flex-direction: column;
			text-align: center;
			gap: 15px;
		}

		.benefit-icon {
			width: 30px;
			height: 30px;
			font-size: 2rem;
		}

		.benefit-item {
			padding: 20px;
		}
	}

	/* Animation for cards */
	.benefit-item {
		animation: fadeInUp 0.6s ease forwards;
		opacity: 0;
		transform: translateY(20px);
	}

	.benefit-item:nth-child(1) {
		animation-delay: 0.1s;
	}

	.benefit-item:nth-child(2) {
		animation-delay: 0.2s;
	}

	.benefit-item:nth-child(3) {
		animation-delay: 0.3s;
	}

	@keyframes fadeInUp {
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	/* Modal centering */
	#clinicFormModal .modal-dialog {
		display: flex;
		align-items: center;
		min-height: calc(100% - 1rem);
	}

	@media (min-width: 576px) {
		#clinicFormModal .modal-dialog {
			min-height: calc(100% - 3.5rem);
		}
	}

	/* Colorful header styling */
	.colorful-header {
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		border-radius: 15px 15px 0 0;
		border-bottom: none;
		padding: 25px 30px;
		position: relative;
		overflow: hidden;
	}

	.colorful-header::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
		pointer-events: none;
	}

	.colorful-header .close {
		color: white !important;
		opacity: 0.9 !important;
		font-size: 2.5rem !important;
		/* Much bigger X */
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
		position: absolute !important;
		/* Force absolute positioning */
		top: 10px !important;
		/* Distance from top */
		right: 15px !important;
		/* Distance from right */
		z-index: 999 !important;
		/* Very high z-index */
		background: none !important;
		border: none !important;
		padding: 0 !important;
		width: 50px !important;
		/* Fixed width */
		height: 50px !important;
		/* Fixed height */
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		border-radius: 50% !important;
		transition: all 0.3s ease;
		line-height: 1 !important;
		font-weight: bold !important;
	}

	.colorful-header .close:hover {
		opacity: 1 !important;
		transform: scale(1.3) !important;
		/* Bigger on hover */
		background: rgba(255, 255, 255, 0.2) !important;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
	}

	.colorful-header .close:focus {
		outline: none !important;
		box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) !important;
	}

	.colorful-header {
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		border-radius: 15px 15px 0 0;
		border-bottom: none;
		padding: 25px 30px;
		position: relative !important;
		/* Ensure relative positioning */
		overflow: visible !important;
		/* Allow close button to be visible */
	}

	/* Update header content to not interfere */
	.header-content {
		display: flex;
		align-items: center;
		gap: 20px;
		position: relative;
		z-index: 1;
		padding-right: 70px !important;
		/* Give more space for close button */
		margin-right: 20px !important;
	}

	.logo-section {
		flex-shrink: 0;
		background: transparent;
		padding: 0;
	}

	.modal-logo {
		width: auto;
		height: 50px;
		border-radius: 10px;
		padding: 5px;
		background: transparent;
		filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
	}

	.title-section {
		flex-grow: 1;
	}

	.modal-title {
		color: white;
		margin: 0;
		font-weight: 700;
		font-size: 1.5rem;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	}

	.title-main {
		display: block;
		font-size: 1.30rem;
		margin-bottom: 2px;
	}

	.title-sub {
		display: block;
		font-size: 1.2rem;
		opacity: 0.9;
		font-weight: 500;
	}

	.colorful-header .close {
		color: white;
		opacity: 0.8;
		font-size: 1.5rem;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
		position: relative;
		z-index: 1;
	}

	.colorful-header .close:hover {
		opacity: 1;
		transform: scale(1.1);
		transition: all 0.3s ease;
	}

	/* Modal content styling */
	#clinicFormModal .modal-content {
		border-radius: 15px;
		box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
		border: none;
		overflow: hidden;
	}

	#clinicFormModal .modal-body {
		padding: 30px;
		background: #f8f9fa;
	}

	/* Form styling */
	#clinicFormModal .form-group {
		margin-bottom: 20px;
	}

	#clinicFormModal .form-control {
		border-radius: 10px;
		border: 2px solid #e9ecef;
		padding: 12px 15px;
		transition: all 0.3s ease;
		background: white;
	}

	#clinicFormModal .form-control:focus {
		border-color: #667eea;
		box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
		transform: translateY(-2px);
	}

	#clinicFormModal .form-control.is-invalid {
		border-color: #dc3545;
		box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
	}

	#clinicFormModal .form-control.is-valid {
		border-color: #28a745;
		box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
	}

	.form-error {
		display: block;
		margin-top: 5px;
		font-size: 0.875rem;
	}

	/* Loading state for submit button */
	#clinicFormModal .btn-primary:disabled {
		opacity: 0.7;
		cursor: not-allowed;
	}

	#clinicFormModal .btn-primary .fa-spinner {
		margin-right: 8px;
	}

	#clinicFormModal .form-label {
		font-weight: 600;
		color: #495057;
		margin-bottom: 8px;
	}

	/* Button styling */
	#clinicFormModal .btn-primary {
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		border: none;
		border-radius: 10px;
		padding: 12px 30px;
		font-weight: 600;
		transition: all 0.3s ease;
	}

	#clinicFormModal .btn-primary:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
	}

	#clinicFormModal .btn-secondary {
		border-radius: 10px;
		padding: 12px 30px;
		font-weight: 600;
	}

	/* Responsive design */
	@media (max-width: 768px) {
		.colorful-header .close {
			font-size: 2rem !important;
			top: 8px !important;
			right: 12px !important;
			width: 45px !important;
			height: 45px !important;
		}

		.header-content {
			padding-right: 60px !important;
		}

		.modal-logo {
			width: 300px;
			height: auto;
		}

		.modal-title {
			font-size: 1.3rem;
		}

		.title-main {
			font-size: 1.5rem;
		}

		.title-sub {
			font-size: 1rem;
		}

		#clinicFormModal .modal-body {
			padding: 20px;
		}
	}

	/* Animation for modal appearance */
	#clinicFormModal .modal-content {
		animation: modalSlideIn 0.3s ease-out;
	}

	@keyframes modalSlideIn {
		from {
			opacity: 0;
			transform: translateY(-50px) scale(0.9);
		}

		to {
			opacity: 1;
			transform: translateY(0) scale(1);
		}
	}