/* General body and layout */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Header styling */
header {
    background-color: #0066cc;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Heading styles */
h1, h2 {
    margin: 20px 0;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 1.8em;
    color: #0066cc;
}

/* Paragraphs and lists */
p, ul {
    margin-left: 20px;
    margin-right: 20px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 8px;
}

/* Link styles */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Section headers */
.section-header {
    font-weight: bold;
    margin-top: 30px;
}

/* Content box */
.content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Footer styling */
footer {
    text-align: center;
    padding: 10px;
    background-color: #0066cc;
    color: white;
    margin-top: 30px;
}
