.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 image and text vertically */
    justify-content: flex-start;  /* Align items at the top of the box */
    height: 120px;  /* 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;  /* Center the text horizontally */
    font-size: 1em;
    color: #4040a1;
}
