.link-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;  /* Stack the items vertically */
    justify-content: center;
    align-items: center;
    height: 130px;  /* Ensure consistent height */
}

img {
    max-width: 80px;
    height: auto;
    margin-bottom: 10px;  /* Space between image and text */
}

.link-box p {
    margin: 0;  /* Remove default margins around the text */
    text-align: center;  /* Ensure the text is centered under the image */
    font-size: 1.1em;
    color: #393897;
}

