body {
    font-family: Arial, sans-serif; margin: 0; padding: 0;
    background: #fff; color: #222;
}
header, footer {
    text-align: center; background-color: #03396c; color: white; padding: 20px;
}
nav ul { list-style: none; padding: 0; }
nav ul li {
    display: inline-block; margin: 0 10px;
}
nav ul li a { color: white; text-decoration: none; }
main { padding: 20px; max-width: 800px; margin: auto; }
.logo { width: 80px; }
section { margin-bottom: 40px; }
h2 { border-bottom: 2px solid #03396c; }
footer { font-size: 0.9em; }
.member-list {
    list-style: none;
    padding: 0;
}

.member-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%; /* 그림이 너무 크지 않게 */
    height: auto;   /* 비율 유지하면서 자동 조정 */
    margin-top: 20px; /* 위쪽에 약간 여백 */
}

.profile-photo-big {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.info-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.info-list li {
    margin-bottom: 5px; /* 간격을 아주 좁게! */
}

h4 {
    margin-bottom: 0px; /* 기본 20px인데, 5px로 줄이기 */
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #004080;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #002f5f;
}