body {
    font-family: Arial, sans-serif; /* Use a clean, modern font */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light background color */
    color: #333;
}

h1, h2 {
    text-align: center;
    color: #003366; /* Dark blue for titles */
    margin-bottom: 20px;
}

p {
    padding: 0 20px;
    font-size: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f1f1f1;
}

a {
    color: #007acc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
