body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
  }
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 800px;
    margin: 20px auto;
  }
  .box {
    width: calc(33.33% - 10px);
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333333;
  }
  .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  p {
    font-size: 16px;
  }
  @media screen and (max-width: 768px) {
    .box {
      width: calc(50% - 10px);
    }
  }