/* 기본 폰트 스타일 */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 헤더 스타일 */
header {
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: white;
    padding: 50px 0;
    text-align: center;
}

/* 네비게이션 로고 이미지 스타일 */
.navbar-brand img {
    margin-right: 10px;
    width: 80px; /* 로고 너비 설정 */
    height: auto; /* 비율 유지 */
}

/* 네비게이션 활성 상태 스타일 */
.nav-link.active {
    font-weight: bold;
    color: #0056b3 !important;
}

/* 메인 이미지 스타일 (Index 페이지) */
.main-image {
    width: 100%; /* 칸의 가로폭에 맞게 */
    max-width: 250px; /* 적당한 크기로 제한 */
    height: auto; /* 비율 유지 */
    border: 5px solid #007bff; /* 테두리 추가 */
    border-radius: 10px; /* 테두리 둥글게 */
    margin: 10px auto; /* 여백 추가 및 중앙 정렬 */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* 그림자 추가 */
}

/* About, Members, Contact 섹션 타이틀 */
section h3 {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #007bff;
    font-weight: bold;
}

/* About Page Styles */
.about-profile {
    width: 200px; /* 프로필 이미지 크기 */
    height: 200px;
    object-fit: cover; /* 비율 유지 및 잘림 방지 */
    border: 5px solid #007bff; /* 테두리 */
    border-radius: 50%; /* 원형 이미지 */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* 그림자 추가 */
    margin: 0 auto; /* 중앙 정렬 */
}

.about-title {
    text-align: center;
    color: #0056b3;
    font-size: 2rem;
    margin-top: 20px;
    font-weight: bold;
}

.about-section h4 {
    color: #0056b3;
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.about-section ul {
    margin-top: 10px;
    padding-left: 20px;
    list-style: disc;
}

.about-section ul li {
    line-height: 1.8;
}

/* 기본 폰트 및 테이블 스타일 */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2 {
    color: #0056b3;
    font-weight: bold;
}

table {
    width: 100%;
    margin-top: 20px;
}

.table th, .table td {
    text-align: center;
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: #f1f1f1;
}

/* E-learning Section Styles */
.accordion-button {
    font-weight: bold;
    color: #0056b3;
    background-color: #f8f9fa;
}

.accordion-button:not(.collapsed) {
    background-color: #0056b3;
    color: white;
}

.accordion-body ul {
    padding-left: 20px;
    list-style-type: disc;
}

.accordion-body li {
    margin-bottom: 10px;
}
