/* Reset styles */
body,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Nunito Sans', sans-serif;
}

@media (max-width: 667px){
    .serviceSectionModule{
        display: none;
    }
}

/* Scroll to TOP */
body {
    font-family: Arial, sans-serif;
    height: 2000px;
    /* Just to enable scrolling */
    padding: 20px;
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background: #0056b311;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

#backToTop:hover {
    background: #0056b333;
}
/* END - Scroll to TOP */