.hero-section {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
	color: #ffffff;
	padding: 4rem 2rem;
	margin-bottom: 3rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	text-align: center;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero-title {
	font-size: 3rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
	color: #ffffff;
}

.hero-description {
	font-size: 1.25rem;
	margin: 0 0 2rem 0;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.hero-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: #ffffff;
	color: var(--primary-color);
	text-decoration: none;
	border-radius: var(--radius-md);
	font-weight: 600;
	font-size: 1.125rem;
	transition: var(--transition);
	box-shadow: var(--shadow-md);
}

.hero-button:hover {
	background: var(--bg-light);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.stats-section {
	background: #fff;
	padding: 3rem 2rem;
	margin-bottom: 3rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
}

.stats-grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 2rem;
	text-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.stat-item {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 200px;
	flex: 1 1 200px;
	min-width: 200px;
	max-width: 100%;
	box-sizing: border-box;
}

.stat-item {
	padding: 1.5rem;
}

.stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	line-height: 1;
}

.stat-label {
	font-size: 1.125rem;
	color: var(--text-light);
	font-weight: 500;
}

.featured-doctors-section {
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
	text-align: center;
	margin: 0 0 1rem 0;
}

.section-description {
	font-size: 1.125rem;
	color: var(--text-light);
	text-align: center;
	margin: 0 0 3rem 0;
}

.view-all-section {
	text-align: center;
	margin-top: 3rem;
}

.view-all-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: var(--primary-color);
	color: #fff;
	text-decoration: none;
	border-radius: var(--radius-md);
	font-weight: 600;
	font-size: 1.125rem;
	transition: var(--transition);
	box-shadow: var(--shadow-md);
}

.view-all-button:hover {
	background: var(--primary-hover);
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

.specializations-section {
	margin-bottom: 4rem;
}

.specializations-grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 1.5rem;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.specialization-card {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 250px;
	flex: 1 1 250px;
	min-width: 250px;
	max-width: 100%;
	box-sizing: border-box;
}

.specialization-card {
	background: #fff;
	padding: 2rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	text-decoration: none;
	transition: var(--transition);
	text-align: center;
}

.specialization-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
	border-color: var(--primary-color);
}

.specialization-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0 0 0.5rem 0;
}

.specialization-card p {
	color: var(--text-light);
	margin: 0;
	font-size: 0.875rem;
}

@media (max-width: 1024px) {
	.hero-section {
		padding: 3rem 2rem;
	}
	
	.stat-item {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 calc(50% - 1rem);
		flex: 1 1 calc(50% - 1rem);
	}
	
	.specialization-card {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 calc(50% - 0.75rem);
		flex: 1 1 calc(50% - 0.75rem);
	}
}

@media (max-width: 768px) {
	.hero-section {
		padding: 3rem 1.5rem;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-description {
		font-size: 1rem;
	}
	
	.stats-section {
		padding: 2rem 1.5rem;
	}

	.stat-item {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
		min-width: 100%;
		max-width: 100%;
	}

	.stat-number {
		font-size: 2.5rem;
	}

	.section-title {
		font-size: 2rem;
	}
	
	.specializations-grid {
		gap: 1rem;
	}

	.specialization-card {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
		min-width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.hero-section {
		padding: 2rem 1rem;
	}
	
	.hero-title {
		font-size: 1.75rem;
	}
	
	.hero-description {
		font-size: 0.9375rem;
	}
	
	.hero-button {
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
		width: 100%;
	}
	
	.stats-section {
		padding: 1.5rem 1rem;
	}
	
	.stat-number {
		font-size: 2rem;
	}
	
	.section-title {
		font-size: 1.75rem;
	}
	
	.view-all-button {
		width: 100%;
		padding: 0.875rem 1.5rem;
	}
}

