.card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    max-width: 500px;
    width: 90%;
    margin: 50px auto; /* Center horizontally */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  }
  
  .card-header {
    background: #00a8e8;
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    padding: 15px;
    letter-spacing: 1px;
  }
  
  .card-subheader {
    background: #dce6f7;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    padding: 10px;
    color: #333;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .card-body ul li {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    justify-content: flex-start; /* Left align */
    text-align: left;            /* Text left */
  }
  
  
  .card-body ul li:last-child {
    border-bottom: none;
  }
  
  .card-body ul li::before {
    content: "✔";
    color: #00a8e8;
    font-weight: bold;
    margin-right: 10px;
  }
  