* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
  }
  
  body {
    background-color: white;
  }
  
  header {
    padding: 20px;
    background: linear-gradient(90deg, #72CFED, #186C86);
    color: white;
    display: flex;
    justify-content: space-between;
    padding-inline: 30px;
  }
  
  .cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    flex-wrap: wrap;
    max-width: 1000px;
  }

  .card {
    width: 200px;
    background-color: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
  }
  
  .card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .card h2 {
    color: #186C86;
    margin-bottom: 10px;
  }
  
  .card .data {
    position: absolute;
    top: 10px;
    right: 10px;
    color: lightgray;
    font-size: 12px;
  }