.profile-card {
	max-width: 800px;
	margin: 2rem auto;
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.profile-header {
	background: linear-gradient(135deg, #6e8efb, #a777e3);
	padding: 3rem 2rem;
	text-align: center;
	color: white;
}

.profile-image {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 5px solid white;
	object-fit: cover;
	margin-bottom: 1rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-name {
	font-size: 2rem;
	margin: 0.5rem 0;
}

.profile-title {
	font-size: 1.2rem;
	opacity: 0.9;
	margin: 0;
}

.profile-content {
	padding: 2rem;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
}

.info-item {
	display: flex;
	align-items: center;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 10px;
	transition: transform 0.2s;
}

.info-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-icon {
	font-size: 1.5rem;
	margin-right: 1rem;
}

.info-label {
	font-weight: bold;
	margin-right: 0.5rem;
	color: #555;
}

.info-value {
	color: #333;
}

@media (max-width: 768px) {
	.profile-card {
		margin: 1rem;
	}

	.info-grid {
		grid-template-columns: 1fr;
	}

	.profile-image {
		width: 150px;
		height: 150px;
	}
}
