.separar-nosotros {
  margin-top: 80px; /* ajusta a tu gusto */
}
/* Ejemplo de estilo custom para el contenedor de cada servicio */
.service-item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}
.service-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* Ícono más grande y con color personalizado */
.service-item .icon i {
  font-size: 40px;
  color: #C99700; /* Ajusta este color a tu preferencia */
  margin-bottom: 20px;
}

/* Título del servicio (h3) */
.service-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

/* Texto descriptivo */
.service-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

/* Ajustes globales de la sección de Equipo */
.section-heading.text-center {
  text-align: center;
}
.section-heading.text-center h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Tarjetas elegantes para cada miembro */
.card-elegant {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}
.card-elegant:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Imagen del miembro */
.team-member .member-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Información del miembro */
.team-member .member-info {
  padding: 15px;
}
.team-member .member-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}
.team-member .member-info span {
  display: block;
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 0;
}