/* General page settings */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 20px;
}

/* Center and color the header */
header {
    background-color: #4A90E2;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

/* Style the content sections */
section {
    background: white;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Change the list item color */
ul li {
    color: #4A90E2;
    font-weight: bold;
    margin-bottom: 5px;
}