.success-usecases {
    padding: 80px 30px;
    background-color: #ffff;
    color: #fff;
    text-align: center;
    font-family: 'Inter', sans-serif;
  }
  
  .success-usecases .section-header h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color:#000;
  }
  
  .success-usecases .section-header p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 50px;
  }
  
  .usecase-grid {
    display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  }
  
  .usecase-card {
    background-color: #c1c1c1;
  border-radius: 16px;
  padding: 25px 20px;
  width: 260px;
  text-align: left;
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
  }
  
  .usecase-card:hover {
    transform: translateY(-6px);
  }
  
  .usecase-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #000;
  }
  
  .usecase-card p {
    font-size: 0.9rem;
  color: #000;
  line-height: 1.5;
  }
  
  .usecase-card ul {
    list-style: none;
    padding: 0;
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .cta-button {
    margin-top: 20px;
  }
  
  .explore-btn {
    color: #000;
    background: transparent;
    border: 1px solid #000;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .explore-btn:hover {
    background: #000;
    color: #fff;
  }
  