.org-chart {
	max-width: 1200px;
	margin: 3rem auto;
	padding: 2rem 1rem;
	text-align: center;
}

.org-title {
	color: #d17d3c;
	margin-bottom: 3rem;
	font-size: 2.4rem;
}

.org-level {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin-bottom: 4rem;
}

.team-card {
	background: #d17d3c;
	color: white;
	border-radius: 16px;
	padding: 2rem 1.5rem;
	width: 240px;
	min-height: 160px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	transition: all 0.4s ease;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.team-card h2 {
	margin: 0 0 0.4rem 0;
	font-size: 1.55rem;
}

.team-card small {
	font-size: 1.1rem;
	opacity: 0.9;
	margin-bottom: 0.8rem;
}

.team-desc {
	margin-top: 0.8rem;
	font-size: 0.97rem;
	line-height: 1.45;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s ease;
}

.team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	min-height: 220px;
}

.team-card:hover .team-desc {
	opacity: 1;
	max-height: 150px;
}

.contact-card {
	background: #d17d3c;
	color: white;
	border-radius: 16px;
	padding: 2.5rem 2rem;
	max-width: 700px;
	margin: 0 auto;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	text-align: center;
}

.contact-card h2 {
	margin: 0 0 1.8rem 0;
	font-size: 1.8rem;
	color: white;
}

.contact-info p {
	margin: 1.1rem 0;
	font-size: 1.15rem;
}

.contact-info a {
	color: #ffb347;
	text-decoration: none;
	transition: color 0.3s;
}

.contact-info a:hover {
	color: white;
}
