.cards-section {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 50px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto; 
  }
  
  .card {
    flex: 1 1 300px;
    border: 2px solid #00308f;
    border-radius: 12px;
    padding: 20px;
    background-color: white;
    color: #00308f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
  }

  .card:hover {
    background-color: #00308f;
    color: white;
  }
  

  .card:hover h3,
  .card:hover p,
  .card:hover ul li {
    color: white;
  }
  
  .card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
  }
  
  .card-header img {
    width: 60px;
    height: 60px;
  }
  
  .card h3 {
    margin: 0;
    font-size: 30px;
    font-weight: bold;
  }
  
  .card p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .card ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 18px;
   
  }
  
  .card ul li {
    margin-bottom: 6px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .cards-section {
      flex-direction: column;
      padding: 20px;
    }
  
    .card {
      width: 100%;
    }
  }
  