  body{
    font-style: normal;
  }
  .cards {
    display: flex; 
    flex-direction: row; 
    flex-wrap: wrap; 
    align-items: center; 
    gap: 8px; 
    background: #ffffff; 
    border-radius: 14px; 
    padding: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

  }
  
  .logo-section {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 5px;
  }
  
  .logo-section p {
    font-size: 12px;
    font-weight: bold;
    color: #444444;
  }
  
  .content {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  
  .profile-pic {
    width: 90px;
    height: 120px;
    border-radius: 5px;
    object-fit: cover;
    border: 2px solid #e0e0e0;
  }
  
  .info {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
  }
  
  .info h2 {
    margin: 0;
    font-size: 18px;
    color: #333;
  }
  
  .info p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 5px;
  }
  
  .quote {
    font-style: italic;
    color: #888;
    margin-top: 10px;
  }
  
  .social-icons {
    margin-top: auto;
    display: flex;
    gap: 10px;
  }
  
  .social-icons a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #0056b3;
  }
  

  .details {
    display: grid;
    grid-template-columns: 80px 10px 1fr; /* Atur lebar kolom */
    gap: 5px;
    font-size: 14px;
    color: #555;
    align-items: center;
  }
  
  .details .label {
    text-align: left;
    font-weight: bold;
  }
  
  .details .separator {
    text-align: center;
  }
  
  .details .value {
    text-align: left;
  }

  .card-headers {
    text-align: center;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
  }
  
  .card-headers .logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .card-bodys {
    display: flex;
  }

  @media (max-width: 768px) {
    
    .cards{
        width: 100%;
        max-width:423.5px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    .cards{
        width: 423.5px;
    }
}
@media (min-width: 900px) {
    .container {
        max-width: 900px;
    }
    .cards{
        width: 423.5px;
    }
}
@media (min-width: 1330px) {
    .container {
        max-width: 1330px;
    }
    .cards{
        width: 423.5px;
    }
}