.link-box {
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  color: #000;
  box-sizing: border-box;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}


  .link-box:hover {
    background-color: #f0f0f0; /* Softer gray */
    box-shadow: 0 2px 8px rgba(44, 110, 165, 0.1); /* Gentle lift */
  }

  .link-box a {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .text-link {
    display: inline-block;
    margin-bottom: 6px;
    color: #2c6ea5;
    font-weight: bold;
    font-size: 1.1em;
    position: relative;
    transition: color 0.3s ease;
  }

  .text-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #2c6ea5;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .text-link:hover {
    color: #1b4f82;
  }

  .text-link:hover::after {
    transform: scaleX(1);
  }

  @media screen and (max-width: 500px) {
    .link-box {
      padding: 16px;
      font-size: 0.95em;
    }

    .text-link {
      font-size: 1em;
    }
  }