body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: #F4F6F8;
}

/* Header */
header {
    background: #003A6F;
    color: white;
    padding: 25px;
    text-align: center;
    border-bottom: 6px solid #C9A227;
}

header h1,
header h2 {
    margin: 0;
    color: white;
}

header h1 {
    font-size: 32px;
}

/* Navigation */
nav {
    background: #00264a;
    padding: 12px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: #E5C96B;
}

/* Content */
.container {
    background: white;
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    border-top: 4px solid #C9A227;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Section headings */
h2 {
    color: #003A6F;
    border-bottom: 2px solid #E5C96B;
    padding-bottom: 6px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table th,
table td {
    padding: 10px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

table th {
    background: #003A6F;
    color: white;
    font-weight: bold;
}

table tbody tr:nth-child(even) {
    background: #F4F6F8;
}

/* Footer */
footer {
    background: #003A6F;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
