body {
    background-color: #E4D6C6;   /* light beige */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
}

main {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

section {
    background-color: #E6C9A7;   /* tan color */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;

    text-align: center;

    /* subtle polish */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

h1 {
    color: #526047;
    font-family: Georgia, serif;
    text-align: center;
}

h2 {
    color: #707C58;
    text-align: center;
}

p {
    color: #526047;
    font-family: Verdana, sans-serif;
    text-align: center;
}

ul {
    list-style-position: inside;
    text-align: left;       /* keeps bullets lined up */
    display: inline-block;  /* keeps list centered as group */
    padding: 0;
    margin: 0 auto;
}

li {
    margin: 6px 0;
}

a {
    color: #526047;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    color: #707C58;
    text-decoration: underline;
}

footer {
    background-color: #929D70;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}