.ceo-section {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 5px solid #443735;
}

.ceo-image {
  width: 250px;
  height: 312.5px;
  object-fit: cover;
  border: 4px solid #443735;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.ceo-info h2 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 8px;
  border-bottom: 3px solid #443735;
  display: inline-block;
  padding-bottom: 5px;
}

.ceo-info p {
  font-size: 18px;
  color: #64748b;
  font-weight: 500;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image-container {
  display: flex;
  justify-content: center;
}

.member-image {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid #443735;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-info {
  padding: 0;
}

.member-info h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 600;
}

.occupation {
  margin-top: -23px !important;
}

.member-info p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .ceo-section {
    flex-direction: column;
    text-align: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .container {
    padding: 20px;
  }
}
