body {
  font-family: Arial, sans-serif;
}

.counselors-section {
  padding: 80px 20px;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.heading {
  text-align: center;
  margin-bottom: 50px;
}

.heading span {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: bold;
  color: #1e58a9;
  text-transform: uppercase;
}

.heading h2 {
  font-size: 36px;
  font-weight: bold;
  color: #0B2559;
}

.heading h2 i {
  color: #8DC63F;
  font-style: italic;
  font-weight: normal;
}

.card-wrapper {
  display: flex;
  justify-content: center;
}

.card {
  width: 280px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #eee;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-box {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  border: 4px solid #eee;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.card:hover img {
  transform: scale(1.05);
}

.role {
  font-size: 11px;
  font-weight: bold;
  color: #8DC63F !important;
  text-transform: uppercase;
  margin: 10px 0;
}

.qual {
  font-size: 10px;
  color: #1e58a9  !important;
}

.lang {
  font-size: 12px;
  font-weight: bold;
  color: #1e58a9  !important;
  margin: 10px 0;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.buttons a {
  padding: 8px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.buttons a:first-child {
  background: rgba(201,162,75,0.1);
  color: #c9a24b;
}

.buttons a:first-child:hover {
  background: #c9a24b;
  color: white;
}

.book {
  background: #1e58a9;
  color: white;
}

.book:hover {
  background: #16427e;
}