* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f9;
}

.keyperson-section {
  padding: 60px 20px;
  text-align: center;
}

.keyperson-section h1 {
  font-size: 36px;
  color: #1f2d3d;
}

.subtitle {
  color: #555;
  margin-bottom: 40px;
}

.card-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.person-card {
  background: #fff;
  width: 280px;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.person-card:hover {
  transform: translateY(-10px);
}

.person-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.person-card h2 {
  margin: 10px 0 6px;
  font-size: 20px;
  color: #222;
}

.person-card h4 {
  margin: 0;
  font-size: 14px;
  color: #d35400;
}

.person-card p {
  margin-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
