/* 기본 스타일 초기화 */
* {
    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: #eee8e2;

}

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

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

h2 {
    font-size: 22px;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 10px;
    text-align: center;
    color:#473b31;
}

.title_h1 {
    font-size: 25px;
    font-weight: bold;
    color: #000;
    text-align: center;
}

.title_h2 {
    font-size: 20px;
    font-weight: ;
    margin-top: 0px;
    text-align: center;
    padding:2px 0 0 10px;
    color:#473b31;
    letter-spacing: -1px;
}

.title_01 {
  font-size: 20px;
  font-weight: 700;
  color:#e0d2c5;
  display: flex;
  justify-content: flex-start;
}

.title_02 {
  font-size: 13px;
  font-weight: 500;
  color:#e0d2c5;
  padding: 5px 0 0 0;
  display:flex;
  justify-content: center;
}

.title_orange {
  color:#de7745;
}

.title_row {
  display:flex;
  justify-content: center;
}

.title_box1 {
  border:1px solid #e0d2c5;
  color:#e0d2c5;
  padding:5px 10px 0px 10px;
  margin-left:15px;
}

.title_box2 {
  font-size:16px;
  font-weight:400;
  color:#e0d2c5;
  padding:5px 10px 0px 5px;
  margin-left:5px;
  line-height: 1.3em;
}

.title_box_orange {
  background:#de7745;
  font-size:15px;
  color:#ffffff;
  padding:2px 10px;
  margin-left:10px;
}

.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: 10px 12px;
    font-size: 16px;
    vertical-align: middle;
}

th {
    background-color: #846c5d;
    font-weight: bold;
    color: #fff;
}

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

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

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

.info-content {
    font-size:15px;
    font-weight:500;
    text-align: center;
    background-color: #fcfcfc;
    line-height: 1.8;
    padding: 15px;
}

.info-content1 {
    font-size:15px;
    font-weight:500;
    text-align: left;
    background-color: #fcfcfc;
    line-height: 1.8;
    padding: 8px 0 8px 15px;
}

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