:root {
--primary: #2a5c3f;
--primary-light: #e8f0ec;
--primary-dark: #1e4530;
--text: #333;
--text-light: #666;
--border: #ddd;
--bg: #f8f9fa;
--white: #fff;
--accent: #c9a84c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* ── 페이지 헤더 ── */
.page-header {
background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
color: #fff;
padding: 60px 20px 50px;
text-align: center;
position: relative;
overflow: hidden;
}
.page-header::before {
content: '';
position: absolute;
inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 {
font-size: 28px;
font-weight: 700;
position: relative;
letter-spacing: -0.5px;
}
.page-header p {
margin-top: 10px;
font-size: 14px;
opacity: 0.8;
position: relative;
}

/* ── 본문 컨테이너 ── */
.container {
max-width: 100%;
margin: 0 auto;
padding: 40px 20px 80px;
}

/* ── 섹션 ── */
.section {
background: var(--white);
border-radius: 10px;
padding: 32px 30px;
margin-bottom: 20px;
border: 1px solid var(--border);
box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.section-number {
display: inline-flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
background: var(--primary);
color: #fff;
border-radius: 50%;
font-size: 13px;
font-weight: 700;
margin-right: 10px;
flex-shrink: 0;
}

.section-title {
display: flex;
align-items: center;
font-size: 18px;
font-weight: 700;
color: var(--primary-dark);
margin-bottom: 18px;
padding-bottom: 14px;
border-bottom: 2px solid var(--primary-light);
}

.section p {
margin-bottom: 12px;
color: var(--text);
}

.section ul {
list-style: none;
padding: 0;
margin: 12px 0;
}
.section ul li {
position: relative;
padding-left: 18px;
margin-bottom: 6px;
color: var(--text-light);
}
.section ul li::before {
content: '';
position: absolute;
left: 0;
top: 11px;
width: 6px;
height: 6px;
background: var(--accent);
border-radius: 50%;
}

/* ── 위탁 테이블 ── */
.table-wrap {
overflow-x: auto;
margin: 16px 0;
border-radius: 8px;
border: 1px solid var(--border);
}
.table-wrap table {
width: 100%;
min-width: 640px;
border-collapse: collapse;
font-size: 13.5px;
}
.table-wrap thead th {
background: var(--primary);
color: #fff;
padding: 12px 14px;
font-weight: 500;
text-align: center;
white-space: nowrap;
border-right: 1px solid rgba(255,255,255,0.15);
}
.table-wrap thead th:last-child { border-right: none; }
.table-wrap tbody td {
padding: 12px 14px;
text-align: center;
border-bottom: 1px solid var(--border);
border-right: 1px solid var(--border);
color: var(--text-light);
}
.table-wrap tbody td:last-child { border-right: none; }

/* ── 참고 박스 ── */
.note-box {
background: var(--primary-light);
border-left: 4px solid var(--primary);
border-radius: 0 8px 8px 0;
padding: 16px 20px;
margin-top: 16px;
font-size: 13.5px;
color: var(--text);
line-height: 1.9;
}

/* ── 연락처 박스 ── */
.contact-box {
display: inline-flex;
align-items: center;
gap: 10px;
background: var(--primary-light);
padding: 12px 22px;
border-radius: 8px;
margin-top: 10px;
font-weight: 500;
color: var(--primary-dark);
}
.contact-box i {
font-size: 16px;
color: var(--primary);
}

/* ── 외부 링크 ── */
.ext-link {
display: inline-flex;
align-items: center;
gap: 6px;
color: var(--primary);
font-weight: 500;
text-decoration: none;
margin-top: 8px;
transition: color .2s;
}
.ext-link:hover { color: var(--primary-dark); text-decoration: underline; }

/* ── 반응형 ── */
@media (max-width: 640px) {
.page-header { padding: 40px 16px 36px; }
.page-header h1 { font-size: 22px; }
.section { padding: 24px 18px; }
.section-title { font-size: 16px; }
body { font-size: 14px; }
}