*
{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body
{
	font-family: "Segoe UI", sans-serif;
	background-color: #fff;
	color: #333;
}

.panel71 .team-section
{
	text-align: center;
	padding: 60px 20px;
}

.panel71 .team-section h2
{
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-family: 'Vazir';
}

.panel71 .team-description
{
	max-width: 800px;
	margin: 0 auto 50px;
	color: #666;
	font-size: 1rem;
	line-height: 1.6;
	font-family: 'Vazir';
}

.panel71 .team-container
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}

.panel71 .team-member
{
	width: 220px;
	text-align: center;
}

.panel71 .team-member img
{
	width: 160px;
	height: 160px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 15px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.panel71 .team-member h3
{
	font-size: 1.1rem;
	margin-bottom: 5px;
	font-family: 'Vazir';
}

.panel71 .team-member .role
{
	font-size: 0.9rem;
	color: #888;
	margin-bottom: 10px;
	font-family: 'Vazir';
}

.panel71 .social-icons
{
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 5px;
}

.panel71 .social-icons i
{
	color: #0077b5;
	font-size: 16px;
	cursor: pointer;
	transition: color 0.3s ease;
}

.panel71 .social-icons i:hover
{
	color: #005fa3;
}

/* Responsive Styles */
@media (max-width: 768px)
{
	.panel71 .team-member
	{
		width: 45%;
	}
}

@media (max-width: 480px)
{
	.panel71 .team-member
	{
		width: 100%;
	}

	.panel71 .team-member img
	{
		width: 130px;
		height: 130px;
	}

	.panel71 .social-icons
	{
		gap: 10px;
	}
}