
.office-section {
  padding: 3em 0;
}

.office-grid {
  align-items: stretch;
}

.office-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2em;
  height: 100%;
}

.office-title {
  display: flex;
  align-items: center;
  gap: 0.75em;
  margin-bottom: 1em;
}

.office-title h3 {
  margin: 0;
  font-size: 1.1em;
}

.office-icon {
  color: #26aba4;
  font-size: 1.2em;
}

.office-address {
  font-size: 0.9em;
  opacity: 0.85;
  margin-bottom: 1em;
}

.office-desc {
  margin-bottom: 1.2em;
}

.office-list {
  list-style: none;
  padding-left: 0;
}

.office-list li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.6em;
}

.office-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #26aba4;
  font-weight: 600;
}


.team-section {
	padding: 5rem 1.5rem;
	background: #ffffff;
}

.team-container {
	max-width: 1200px;
	margin: 0 auto;
}

.team-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.team-header h2 {
	font-size: 2.2rem;
	margin-bottom: 0.75rem;
}

.team-header p {
	color: #666;
	max-width: 720px;
	margin: 0 auto;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.team-card {
	background: #fafafa;
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.team-card.featured {
	border: 2px solid #111;
}

.team-image {
	position: relative;
}

.team-image img {
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #111;
	color: #fff;
	font-size: 0.75rem;
	padding: 6px 10px;
	border-radius: 20px;
}

.team-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.team-body h3 {
	margin: 0;
	font-size: 1.15rem;
}

.team-role {
	font-size: 0.85rem;
	color: #777;
	margin: 0.3rem 0 1rem;
}

.team-desc {
	font-size: 0.9rem;
	color: #444;
	line-height: 1.55;
	flex-grow: 1;
}

.team-meta {
	list-style: none;
	padding: 0;
	margin: 1.2rem 0;
}

.team-meta li {
	font-size: 0.85rem;
	margin-bottom: 0.4rem;
	color: #333;
}

.team-meta i {
	margin-right: 8px;
	color: #000;
}

.team-btn {
	display: inline-block;
	text-align: center;
	padding: 0.55rem 1rem;
	border-radius: 6px;
	font-size: 0.8rem;
	text-transform: uppercase;
	border: 1px solid #111;
	color: #111;
	text-decoration: none;
}

.team-btn.primary {
	background: #111;
	color: #fff;
}

.team-btn:hover {
	opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.team-grid {
		grid-template-columns: 1fr;
	}
}
