/**
 * iCareBilling Frontend Styles
 * ----------------------------
 * This stylesheet defines the layout, typography, and responsive design
 * for the public-facing pages of the website.
 */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #004080;
    color: white;
    padding: 20px;
    text-align: center;
}

nav a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
}

main {
    padding: 40px;
}

section {
    margin-bottom: 40px;
}

footer {
    background-color: #eee;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}