body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background-color: #ffffff;
}

/* Header Section */
.team-header {
  text-align: center;
  background: linear-gradient(135deg, #006d77 0%, #0b8793 100%);
  position: relative;
  overflow: hidden;
  padding: 50px 20px;
  border-bottom: 4px solid #bbcf32;
}

.team-header h1 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.team-header p {
  font-size: 18px;
  color: #e0f7f5;
  margin-top: 0;
}

/* Optional hero image overlay */
.team-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: saturate(70%) blur(1px);
  pointer-events: none;
}

.team-header > * { position: relative; z-index: 1; }

/* Content */
.content-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.content-section p {
  margin-bottom: 24px;
}

/* Resource Links */
.resource-links a {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 600;
  color: #006d77;
  text-decoration: none;
  border-left: 4px solid #bbcf32;
  padding-left: 12px;
  transition: all 0.2s ease;
}

.resource-links a:hover {
  color: #004f57;
  text-decoration: underline;
}

/* Footer */
.team-footer {
  text-align: center;
  padding: 30px 10px;
  font-size: 14px;
  color: #666;
  background-color: #f8f9fa;
  border-top: 1px solid #eee;
}

/* Back Button */
.back-button {
  padding: 12px 26px;
  background-color: #006d77;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.back-button:hover {
  background-color: #004f57;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
