.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
  }

  .card {
    font-family: 'Arial', sans-serif;
    width: calc(50% - 20px);
    height: 250px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    max-width: 500px;
  }


  .card-icon {
    width: 30%;
    font-size: 48px;
    text-align: center;
    margin-left: 10px;
  }

  .card-body {
    width: 70%;
    padding-left: 20px;
  }

  .card-title {
    font-size: 24px;
    margin: 30px 0px 0px 0px;
    color: #A9271E;
  }

  .card-subtitle {
    font-size: 20px;
    margin: 10px 0px;
  }

  .card-content {
    font-size: 16px;
    color: #333;
  }

  .card-detail-link {
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: end;
    margin: 40px 20px 20px 0px;
  }

  .card-detail {
    color: #A9271E;
    font-weight: bold;
    margin: 0px;

  }

  .circle {
    width: 40px;
    height: 40px;
    background-color: #A9271E;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-left: 10px;
    color: white;
    font-size: 30px;
    margin: 0px 0px 0px 10px;
  }

  .card-icon:before {
    display: block;
  }


  @media (max-width: 600px) {
    .card {
      max-width: 100%;
      width: 100%;
      height: auto;
    }
  }