#s-elements {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.service {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: start;
    max-width: 300px;
}

.service h2 {
    margin-bottom: -20px;
}

.service img {
    max-width: 90%;       
    height: auto;      
    max-height: 55px;
    object-fit: contain;
}

.service a:link, .service a:visited {
    color: black;
    text-decoration: none;
}

.service a:hover, .service a:visited:hover {
    color: var(--link-color); 
    text-decoration: underline;
}

.service a:active, .service a:visited:active {
    color: var(--link-active-color); 
}