body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f6f2;
    color: #1a1a1a;
}

/* Header */
h1 {
    text-align: center;
    color: #0b2a4a;
    font-weight: 600;
    margin-top: 30px;
    letter-spacing: 1px;
}

/* Table container */
table {
    width: 90%;
    margin: 40px auto;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

/* Header cells */
th {
    background-color: #0b2a4a;
    color: #ffffff;
    padding: 14px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

/* Table cells */
td {
    padding: 12px;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
    font-size: 0.95em;
}

/* Alternating rows */
tr:nth-child(even) {
    background-color: #f9f9f7;
}

/* Hover effect */
tr:hover {
    background-color: #eef3f8;
    transition: background-color 0.2s ease;
}

/* Accent line (subtle gold touch) */
table::before {
    content: "";
    display: block;
    height: 4px;
    background-color: #c5a46d;
}

/* Responsive */
@media (max-width: 768px) {
    table {
        width: 100%;
    }

    th, td {
        padding: 8px;
        font-size: 0.85em;
    }
}