.breadcrumbs {
  background-color: #fcffde;
  padding: 1rem 0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.breadcrumbs .container {
  display: flex;
  gap: 0.5rem;
}

.breadcrumbs a {
  color: var(--blue-dark);
  text-decoration: none;
}

.breadcrumbs span {
  color: var(--yellow-dark);
}

.executives {
  padding: 2rem 0;
}

.executives h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--blue-dark);
}

.executive-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.executive {
  text-align: center;
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
  background-color: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 500px) {
  .executive {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .breadcrumbs {
    font-size: 10px;
  }
}

.executive-img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.executive h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.position {
  font-size: 1rem;
  color: #888;
}
