body {
    font-family: Arial, sans-serif;
    background-color: #f5f5dc; /* Beige background */
    color: #5c4033; /* Dark brown text */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header, footer {
    background-color: #0078d4;
    color: white;
    text-align: right; /* Aligns all content to the right in the header */
    padding: 1rem;
}

main {
    padding: 1rem;
}

section {
    margin-bottom: 2rem;
    background-color: #fff8e1; /* Light beige */
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #0078d4;
    text-align: center;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    padding: 0.5rem 0;
}

a {
    color: #0078d4;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #0056a3;
}

button {
    background-color: #8b4513;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: #a0522d; /* Sienna */
}
