body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light background color for the entire page */
    color: #333; /* Default text color */
    text-align: center;
}

header {
    background: hsl(261, 95%, 16%); /* Dark purple background for header */
    padding: 40px 0;
    color: white;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

header .logo-container {
    margin-bottom: 15px;
}

header img {
    max-width: 200px; /* Adjust logo size */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for the logo */
}

h1 {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.content-box {
    width: 70%;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    border: 2px solid #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-box h2 {
    font-size: 24px;
    color: #333;
}

.content-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.content-box a {
    color: #007BFF;
    text-decoration: none;
}

.content-box a:hover {
    text-decoration: underline;
}

.links-table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
}

.links-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.links-table td:first-child {
    width: 10%;
}

.links-table td:nth-child(2) {
    width: 50%;
}

.links-table td:last-child {
    width: 40%;
}

.links-table a {
    color: #007BFF;
    text-decoration: none;
}

.links-table a:hover {
    text-decoration: underline;
}

.key-dates {
    margin-top: 30px;
    text-align: left;
    background-color: #f1f1f1;
    padding: 10px;
    border: 1px solid #ddd;
}

.key-dates p {
    font-size: 16px;
    color: #333;
}

.helpdesk {
    margin-top: 30px;
    padding: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
}

.helpdesk h3 {
    font-size: 20px;
    color: #333;
}

.helpdesk p {
    font-size: 16px;
    color: #555;
}
