  .box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 1px solid #ccc;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
      background-color: #f9f9f9;
      gap: 20px;
    }

    .box-text {
      flex: 1;
      font-size: 15px;
      color: #333;
    }

    .box-button {
      flex-shrink: 0;
    }

    .box-button a {
      background-color: #1976d2;
      color: white;
      padding: 8px 18px;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
      font-size: 14px;
      display: inline-block;
    }

    .box-button a:hover {
      background-color: #125db5;
    }

    @media screen and (max-width: 768px) {
      .box {
        flex-direction: column;
        align-items: flex-start;
      }
      .box-button {
        margin-top: 10px;
      }
    }