/* Styles for Large Screens (Desktops and Large Laptops) */
@media screen and (min-width: 1024px) {
    /* Add your styles for large screens here */
}

/* Styles for Medium Screens (Laptops and Tablets) */
@media screen and (min-width: 600px) and (max-width: 1023px) {
    /* Add your styles for medium screens here */
}

/* Styles for Small Screens (Small Tablets and Smartphones) */
@media screen and (max-width: 599px) {
    /* Add your styles for small screens here */
}

/* Styles for Small Smartphones */
@media screen and (max-width: 319px) {
    /* Add your styles for small smartphones here */
}
