/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #333;
}

/* Header styles */
header {
    text-align: center;
    padding: 40px;
    background-color: #0077b6;
    color: white;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

/* Section styles */
section {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
}

section h2 {
    font-size: 2em;
    color: #0077b6;
    margin-bottom: 10px;
}

section p {
    font-size: 1.1em;
    line-height: 1.6;
}

section ul {
    list-style-type: none;
}

section ul li {
    font-size: 1.1em;
    margin: 10px 0;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #0077b6;
    color: white;
    margin-top: 40px;
}

footer p {
    font-size: 1em;
}
