/* Styles for the body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Styles for the header */
header {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Styles for h1 */
h1 {
    color: black;
    font-size: 2.5em;
    margin: 20px 0;
}

/* Styles for h2 */
h2 {
    color: #333;
    font-size: 2em;
    margin: 15px 0;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 5px;
}

/* Styles for h3 */
h3 {
    color: #555;
    font-size: 1.5em;
    margin: 10px 0;
}

/* Styles for paragraphs */
p {
    margin: 10px 0;
    font-size: 1em;
}

/* Styles for list items */
li {
    margin-bottom: 5px;
    font-size: 1em;
    line-height: 1.5;
}

