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

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #fafaf9;
    color: #1c1917;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   Header
   ============================================ */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #e7e5e4;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-container .logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-container .logo-text {
    font-weight: bold;
    font-size: 32px;
    letter-spacing: -0.025em;
    color: #292524;
}
/* 멘토링 차트 */
main {max-width: 1200px; margin: 0 auto;}
.chart-wrap .innerSection {padding: 60px 0;}
.chart-wrap .score-group .item-box {
    display: flex;
    gap: 20px;
}
.chart-wrap .chart-cont {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    width: 100%;
}
.chart-wrap .chart-cont .item-box {
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.chart-wrap .score-group .item-box:nth-child(1) {
    background-image: linear-gradient(135deg, #0071b9 10%, #064a84 100%);
}
.chart-wrap .score-group .item-box .item {
    flex: 1 1 0;
}
.chart-wrap .score-group .item-box .item:nth-child(2) {
    flex: 2 1 0;
}        
.chart-wrap .chart-cont .score-group h3 {
    color: #fff;
}
.chart-wrap .chart-cont h3 {
    margin-bottom: 20px;
    color: #000;
    font-size: 22px;
    font-weight: 500;
}
.chart-wrap .score-group .score-info {
    display: flex;
    flex-direction: column;
    height: 250px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 10px;
}
.chart-wrap .score-group .score-info .scroe {
    margin-top: 40px;
    color: #434141;
    font-size: 80px;
    font-weight: 700;
    text-align: center;
}
.chart-wrap #linechart01 {
    height: 250px;
}
.chart-wrap .score-group .score-info .btn-wrap {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: auto;
}
.chart-wrap .score-group .score-info .btn-wrap .txt {
    color: #434141;
    font-size: 18px;
}
.chart-wrap .chart-group .chart-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.chart-wrap .chart-group .chart-list > * {
    flex: 1 1 0;
}
.chart-wrap .chart-cont h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 500;
}
.chart-wrap .chart-group .chart-list > .ct-item .ct-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
}
.chart-wrap #radarchart01 {
    width: 100%;
    height: 400px;
}
.chart-wrap .chart-group .chart-list .ct-cont {
    padding: 20px;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.chart-wrap #barchart01 {
    height: 450px;
}

/* 커스텀 범례 스타일 */
.custom-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
}
.legend-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.legend-bar {
    height: 6px;
    width: 60px;
    border-radius: 3px;
}
.legend-text {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* 각 카테고리별 색상 정의 */
.color-prep { background-color: #4CAF50; } /* 창업준비 - 초록 */
.color-mgmt { background-color: #FFD700; } /* 경영관리 - 노랑 */
.color-tech { background-color: #F44336; } /* 영농기술 - 빨강 */
.color-life { background-color: #F44336; } /* 농촌생활 - 연한 빨강 */

.chart-wrap .etc-tip {
    padding: 20px 10px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
}
.chart-wrap .etc-tip .etc-name {
    color: #000;
    font-size: 18px;
    font-weight: 700;
}
.chart-wrap .etc-tip .etc-txt {
    color: #ff0606;
    font-size: 18px;
    font-weight: 500;
}
footer {
    border-top: 1px solid #e7e5e4;
    background-color: #074D43;
    padding: 3rem 1rem;
    text-align: center;
}

.footer-txt p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}