responsive static method
Create responsive spacing that adapts to screen size
Implementation
static EdgeInsets responsive({
double mobile = 16.0,
double tablet = 24.0,
double desktop = 32.0,
}) {
// For email, we'll use mobile-first approach
// In future, we can make this responsive with media queries
return EdgeInsets.all(mobile);
}