/* Reset some defaults */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
}

/* Basic page style */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #004aad;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Navigation */
nav {
    background-color: #003580;
    text-align: center;
    padding: 10px 0;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

/* Footer */
footer {
    text-align: center;
    background-color: #004aad;
    color: white;
    padding: 10px;
    margin-top: 20px;
}

/* Services list */
ul {
    list-style-type: square;
    padding-left: 20px;
}

