body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Header */
.team-header {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.2)),
              url('../images/c.jpg') center/cover no-repeat;
  color: #fff;
  padding: 160px 20px;
  text-align: center;
}
.team-header h1 {
  font-weight: 700;
  font-size: 2.8rem;
}
.team-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Team Section */
.team-section {
  padding: 60px 0;
}

/* Team Card */
.team-card {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 25px;
  margin-bottom: 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: flex-start;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Team Image */
.team-img, 
.placeholder-img {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #0077cc;
}

/* Placeholder */
.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
  color: #888;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Team Info */
.team-info {
  flex: 1;
}
.team-info h5 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}
.team-info .text-primary {
  font-size: 1.1rem;
  font-weight: 500;
  color: #0077cc;
  margin-bottom: 12px;
}
.team-info .desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .team-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .team-img, .placeholder-img {
    width: 150px;
    height: 150px;
  }
  .team-info {
    margin-top: 15px;
  }
}
