/* BASIC css start */
/* 기본 폰트 및 색상 */
body,
#brandInfo h2,
#brandInfo p,
#brandInfo li,
#brandInfo h3,
#brandInfo table {
    font-family: 'Noto Sans KR', sans-serif;
    color: #1c1c1c;
}

/* 페이지 여백 */
#brandInfo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 제목 */
#brandInfo .sub_title {
    text-align: center;
    margin-bottom: 50px;
}
#brandInfo .sub_title h2 {
    font-size: 38px;
    font-weight: 600;
}
#brandInfo .sub_title .sub_desc {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* 섹션 */
#brandInfo .freight-table-section {
    margin-bottom: 60px;
}

/* 소제목 */
#brandInfo .freight-table-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
}

/* 테이블 설명 */
#brandInfo .table-note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: right;
}

/* 테이블 */
#brandInfo .freight-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 800px;
}
#brandInfo .freight-table thead th {
    background: #f5f5f5;
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
    font-weight: 500;
}
#brandInfo .freight-table tbody td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    color: #444;
}
#brandInfo .freight-table tbody tr:nth-child(even) {
    background: #fafafa;
}

/* 테이블 스크롤 */
#brandInfo .table-scroll {
    overflow-x: auto;
}

/* 첫 열 좌측 정렬 */
#brandInfo .freight-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
}

/* BASIC css end */

