body, html {
    background-color: #ecf2f1;
  }

  .left-panel, .right-panel {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .left-panel {
    color: #333;
    text-align: center;
  }

  .right-panel {
    background-color: #fdfdfd;
  }
  .card-module {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    padding: 20px;
    text-align: center;
    height: 100%;
    background: #fff;
  }

  .card-module h5 {
    font-size: 18px;
    margin: 10px 0 5px;
  }

  .card-module p {
    font-size: 14px;
    color: #555;
  }

  .module-icon {
    font-size: 2rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: #333;
    border-radius: 50%;
  }
  .why-eflow {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  animation: fadeIn 1s ease;
}

.why-eflow h5 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #0d6efd;
}

.why-eflow .feature {
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.why-eflow .feature:hover {
  transform: translateY(-4px);
}

.why-eflow .feature i {
  color: #0d6efd;
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

@keyframes fadeIn {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}