/* 기본 스타일 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
    background-color: #fff;

}

.container {
    width: 100%;
    max-width: 1800px;
}

h1 {
    font-size: 28px;
    font-weight: bold;
    margin: 60px 0 20px 0;
    color: #000;
    text-align: center;
    line-height: 1.3em;
}

h2 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.sub-notice {
    font-size: 15px;
    color: #666;
    line-height: 1.3;
    text-align: center;
}

/* 테이블 공통 스타일 */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    border-top: 2px solid #333;
}

th, td {
    border: 1px solid #000;
    padding: 12px 15px;
    font-size: 20px;
    vertical-align: middle;
}

th {
    background-color: #afddd2;
    font-weight: bold;
    color: #333;
}

td {
    text-align: center;
    color: #444;
}

/* 특정 클래스 스타일 */
.category {
    font-weight: bold;
    background: #f5f5f5;
}

.highlight-text {
    color: #e74c3c; /* 무료 항목 강조 */
    font-weight: bold;
}

.info-content {
    text-align: center;
    background-color: #fcfcfc;
    line-height: 1.8;
    padding: 20px;
}

/* 반응형 대응 (필요 시) */
@media (max-width: 600px) {
    th, td {
        padding: 8px;
        font-size: 12px;
    }
}
