/* ===== Global Styles ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: linear-gradient(to right, #f8e3ff, #e0f7fa);
  color: #333;
  text-align: center;
}

.team-section {
  padding: 60px 20px;
}

.team-section h2 {
  font-size: 2.8em;
  margin-bottom: 50px;
}

.team-section h2 span {
  font-weight: bold;
  color: #000;
}

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

/* ===== Team Cards ===== */
.team-card {
  width: 330px;        /* wider */
  min-height: 500px;   /* taller */
  padding: 30px 20px;
  border-radius: 25px;
  color: #fff;
  text-align: center;
  position: relative;
}

.team-card img {
  width: 200px;   /* bigger */
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #fff;
}

.team-card h3 {
  margin: 15px 0;
  font-size: 1.6em;
}

.team-card p {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.4em;
}

.orange { background: #e6951d; }
.green { background: #2fa84f; }
.blue { background: #0b4f82; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #333;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #ddd;
}

/* ===== Individual Profile Page Styles ===== */
.profile {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.profile img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 6px solid #fff;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

.profile h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.profile p {
  font-size: 1.1em;
  line-height: 1.6em;
  margin-bottom: 30px;
}

/* Unique background colors for each profile page */
.juliana-page {
  background: linear-gradient(to bottom right, #f8c471, #f39c12);
  color: #fff;
}

.francois-page {
  background: linear-gradient(to bottom right, #82e0aa, #27ae60);
  color: #fff;
}

.chidi-page {
  background: linear-gradient(to bottom right, #5dade2, #154360);
  color: #fff;
}