/* Global Styles */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive Styles */
/* Small devices (phones, 576px and down) */
@media only screen and (max-width: 576px) {
    body {
        font-size: 12px;
    }
}

/* Medium devices (tablets, 768px and down) */
@media only screen and (max-width: 768px) {
    body {
        /* Keep the same styles as small devices */
        font-size: 12px;
    }
}

/* Large devices (desktops, 992px and down) */
@media only screen and (max-width: 992px) {
    body {
        /* Adjust styles for larger screens */
        font-size: 14px;
    }
}

/* Extra large devices (large desktops, 1200px and down) */
@media only screen and (max-width: 1200px) {
    body {
        /* Keep the same styles as large devices */
        font-size: 16px;
    }
}