.agent-container {
    display: flex;
    flex-direction: row;
    justify-content: center;  /* tengah secara horizontal */
    gap: 2rem;                /* jarak antar card */
    flex-wrap: wrap;          /* responsif: biar turun ke bawah kalau layar kecil */
    margin-top: 2rem;
    text-align: center;
  }
  
  .agent-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 1.5rem;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .agent-card:hover {
    transform: translateY(-10px);
  }
  
  .agent-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 1rem;
  }
  
  .agent-card h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
  }
  
  .agent-card p {
    color: #666;
    font-size: 0.9rem;
  }
  
  .socials a {
    margin: 0 0.5rem;
    color: #555;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .socials a:hover {
    color: #007bff;
  }

  #agents-section {
    text-align: center;
    padding: 2rem;
  }
