* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.5;
    color: #2a2a2a;
    background-color: #f8f8f8;
    padding: 60px 30px;
}

.container {
    max-width: 720px;
    margin: 0 auto;
}

header {
    margin-bottom: 40px;
}

h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.intro {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 20px;
    color: #3a3a3a;
    max-width: 650px;
}

.contact-links {
    font-size: 15px;
    color: #666;
    margin-top: 15px;
}

.contact-links a {
    color: #2c5f7f;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s ease;
}

.contact-links a:hover {
    border-bottom: 1px solid #2c5f7f;
}

.separator {
    margin: 0 8px;
    color: #ccc;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    margin-top: 35px;
    color: #1a1a1a;
}

section:first-of-type h2 {
    margin-top: 0;
}

.item {
    margin-bottom: 12px;
    padding: 8px 0;
}

.item-title {
    margin-bottom: 6px;
}

.item-title strong {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    display: inline-block;
}

.org {
    font-size: 15px;
    font-style: italic;
    color: #777;
    margin-left: 6px;
}

.description {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 4px;
}

.description-sub {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 4px;
}

.meta {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

.meta-small {
    font-size: 12px;
    color: #aaa;
    margin-top: 2px;
}

.misc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 10px;
}

.misc-item {
    padding: 15px;
    background: #fff;
    border-radius: 4px;
}

.misc-item strong {
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #2c5f7f;
}

.misc-item p {
    font-size: 14px;
    color: #555;
    margin-bottom: 3px;
}

footer {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 13px;
    color: #888;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 768px) {
    body {
        padding: 40px 20px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .intro {
        font-size: 16px;
    }
    
    h2 {
        font-size: 18px;
        margin-top: 35px;
    }
    
    .item {
        margin-bottom: 12px;
    }
    
    .misc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Subtle fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeIn 0.6s ease-out;
}
