.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 30px;
    max-width: 1300px;
    margin: auto;
    font-family: 'Arial', sans-serif;
  }
  
  .card {
    padding: 30px;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .card .user {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .card .user img {
    width: 40px;
    border-radius: 50%;
    margin-right: 15px;
  }
  
  .card .user h4 {
    margin: 0;
    font-size: 16px;
  }
  
  .card .user .verified {
    font-size: 12px;
    opacity: 0.7;
    margin: 0;
  }
  
  .card h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* Individual cards with layout spans and custom colors */
  .card1 {
    grid-column: span 2;
    background-color: hsl(263, 55%, 52%);
    background-image: url('images/bg-pattern-quotation.svg');
    background-repeat: no-repeat;
    background-position: top right 20px;
  }
  
  .card2 {
    background-color: hsl(217, 19%, 35%);
  }
  
  .card3 {
    background-color: white;
    color: black;
  }
  
  .card4 {
    grid-column: span 2;
    background-color: hsl(219, 29%, 14%);
  }
  
  .card5 {
    grid-column: 4;
    grid-row: span 2;
    background-color: white;
    color: black;
  }
  