.service-tile {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}
.service-tile h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}
.service-tile p {
    font-size: 1rem;
    margin-bottom: 0;
}
.service-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
    z-index: -1;
}
.service-tile:hover>.service-content {
    transform: translateY(-1rem);
}
.service-content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 10px;
    transition: transform 0.5s ease-in-out;
}