/* Mobile Styles */
@media (max-width: 768px) {
    /* Your mobile styles here */
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Your tablet styles here */
}

/* Desktop Styles */
@media (min-width: 1025px) {
    /* Your desktop styles here */
} 