body {
    font-family: 'Merriweather', Georgia, serif;
    line-height: 1.3;
    color: #333;
    max-width: 100vw;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    font-size: 16px;
}

.container {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
}

.logo {
    display: block;
    margin-bottom: -50px;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.name {
    width: 102%;
    margin-top: 50px;
    margin-left: -1%;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
}

.links {
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
}

a {
    color: #333;
    text-decoration: none;
}
a:focus,
a:hover {
    color: #f09228;
    text-decoration: none;
}

p {
    margin-top: 0;
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.2;
}

h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.25rem;
    margin-top: 20px;
    margin-bottom: 12px;
    text-align: center;
}

.directory-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #fafbfc;
    font-size: 15px;
}
.directory-table th, .directory-table td {
    padding: 0.3em 0.7em;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.1;
}
.directory-table th {
    font-weight: 700;
    background: #f2f2f2;
}
.directory-table tr:last-child td {
    border-bottom: none;
}

.last-updated {
    text-align: center;
    font-size: 0.8em;
    color: #222;
    margin-bottom: 50px;
    letter-spacing: 1px;
    font-family: 'NSimSun', 'SimSun', monospace;
}

.footer-images {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-image {
    width: 300px;
    height: auto;
    vertical-align: top;
}

@media (max-width: 600px) {
    .footer-images {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-image {
        margin: 10px 0;
        width: 100%;
        max-width: 300px;
    }
} 