body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.headshot {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header-text {
    color: #fff;
    text-align: left;
}

.header-text h1 {
    margin: 0;
    font-size: 2.5em;
}

.header-text h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 300;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 300;
}

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

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section h3 {
    font-size: 2em;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

article {
    margin-bottom: 30px;
}

article h4 {
    font-size: 1.5em;
    color: #333;
}

article h2 {
    font-size: 1em;
    color: #333;
}

article p, article ul, article ol {
    margin: 10px 0;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    margin: 5px 0;
}

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

footer ul li {
    margin: 5px 0;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table td {
    padding: 10px;
}

.custom-table .first-column {
    width: 100%;
}

.custom-table .second-column {
    white-space: nowrap;
}

.custom-table tr:first-child td {
    border-bottom: 2px solid #333;
}

.custom-table tr:not(:first-child) td {
    border: none;
}