*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
	--green: #1a6b3c;
	--dark: #111827;
	--mid: #6b7280;
	--gray: #9ca3af;
	--border: #f0f0f0;
	--border-md: #e5e7eb;
	--bg: #fff;
	--white: #fff;
	--sans: 'Inter', sans-serif;
	--mono: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
.privacy-wrap { font-family: var(--sans); background: var(--bg); color: var(--dark); min-height: 100vh; padding-bottom: 40px; }

.page { max-width: 1100px; margin: 0 auto; padding: 28px 48px 80px; display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }

.sidebar { position: sticky; top: 28px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border-md); border-radius: 12px; overflow: hidden; }
.sidebar-head { padding: 16px 18px; border-bottom: 1px solid var(--border); }
.sidebar-head-lbl { font-size: 9px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 3px; }
.sidebar-head-title { font-size: 13px; font-weight: 700; color: var(--dark); }
.sidebar-nav { padding: 6px 0; }
.snav-item {
	display: flex; align-items: center; gap: 9px;
	padding: 9px 18px; cursor: pointer; text-decoration: none;
	border-left: 2px solid transparent; transition: all .12s;
}
.snav-item:hover { background: #fafafa; }
.snav-item.active { background: #f0f8f4; border-left-color: var(--green); }
.snav-num { font-size: 9.5px; font-weight: 700; color: var(--gray); font-family: var(--mono); width: 16px; flex-shrink: 0; }
.snav-item.active .snav-num { color: var(--green); }
.snav-label { font-size: 11.5px; font-weight: 500; color: var(--mid); line-height: 1.35; }
.snav-item.active .snav-label { color: var(--green); font-weight: 600; }
.sidebar-badge {
	margin: 12px; padding: 12px 14px;
	background: #edfaf3; border: 1px solid #bbf0d4; border-radius: 9px;
}
.sidebar-badge-title { font-size: 10.5px; font-weight: 700; color: var(--green); margin-bottom: 3px; }
.sidebar-badge-text { font-size: 10.5px; color: var(--green); opacity: .75; line-height: 1.5; }

.main { min-width: 0; }

.page-head {
	background: var(--white); border: 1px solid var(--border-md);
	border-radius: 12px; padding: 28px 32px; margin-bottom: 20px;
}
.page-eyebrow { font-size: 10px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.page-title { font-size: 28px; font-weight: 700; color: var(--dark); letter-spacing: -.6px; line-height: 1.1; margin-bottom: 7px; }
.page-meta { font-size: 12px; color: var(--gray); font-family: var(--mono); }

.law-notice {
	background: var(--white); border: 1px solid var(--border-md);
	border-left: 3px solid var(--green); border-radius: 0 10px 10px 0;
	padding: 13px 18px; display: flex; align-items: flex-start; gap: 11px; margin-bottom: 20px;
}
.law-notice svg { width: 15px; height: 15px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; flex-shrink: 0; margin-top: 1px; }
.law-notice-text { font-size: 12.5px; color: var(--mid); line-height: 1.6; }
.law-notice-text strong { color: var(--dark); }

.section { background: var(--white); border: 1px solid var(--border-md); border-radius: 12px; padding: 24px 28px; margin-bottom: 14px; }
.section-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.section-num-badge {
	width: 32px; height: 32px; background: var(--dark); border-radius: 8px;
	display: flex; align-items: center; justify-content: center; flex-shrink: 0;
	font-size: 11px; font-weight: 700; color: #fff; font-family: var(--mono); margin-top: 1px;
}
.section-title { font-size: 16px; font-weight: 700; color: var(--dark); letter-spacing: -.2px; line-height: 1.25; padding-top: 5px; }
.section-body { font-size: 13.5px; color: var(--mid); line-height: 1.75; }
.section-body + .section-body { margin-top: 10px; }

.sub-label { font-size: 10px; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .7px; margin: 16px 0 8px; display: flex; align-items: center; gap: 8px; }
.sub-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.policy-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.policy-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--mid); line-height: 1.65; }
.li-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 8px; }

.arco-table { width: 100%; border: 1px solid var(--border-md); border-radius: 10px; overflow: hidden; margin-top: 14px; }
.arco-row { display: grid; grid-template-columns: 130px 1fr; border-bottom: 1px solid var(--border); }
.arco-row:last-child { border-bottom: none; }
.arco-row.head { background: var(--dark); }
.arco-cell { padding: 11px 16px; font-size: 13px; }
.arco-cell:first-child { border-right: 1px solid var(--border); }
.arco-row.head .arco-cell { font-size: 9.5px; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .7px; border-right-color: rgba(255,255,255,.07); }
.arco-left-name { font-weight: 700; color: var(--dark); }
.arco-right-desc { font-size: 12.5px; color: var(--mid); }

.sec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.sec-item { display: flex; align-items: center; gap: 11px; padding: 12px 14px; border: 1px solid var(--border-md); border-radius: 9px; background: #fafafa; }
.sec-icon { width: 30px; height: 30px; background: var(--white); border: 1px solid var(--border-md); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sec-icon svg { width: 13px; height: 13px; stroke: var(--dark); fill: none; stroke-width: 1.8; stroke-linecap: round; }
.sec-text { font-size: 12.5px; color: var(--dark); font-weight: 600; line-height: 1.35; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 14px; }
.contact-card { border: 1px solid var(--border-md); border-radius: 10px; padding: 16px; background: #fafafa; }
.contact-icon { width: 32px; height: 32px; background: var(--dark); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.contact-icon svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; }
.contact-lbl { font-size: 9.5px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 3px; }
.contact-val { font-size: 12.5px; font-weight: 600; color: var(--dark); line-height: 1.4; }

.footer-note { background: var(--white); border: 1px solid var(--border-md); border-radius: 12px; padding: 18px 22px; margin-top: 14px; }
.footer-note p { font-size: 12px; color: var(--gray); line-height: 1.75; font-style: italic; }

@media (max-width: 768px) {
	.page {
		grid-template-columns: 1fr;
		padding: 0 0 40px;
		gap: 0;
	}
	.sidebar { display: none; }

	.page-head {
		border-radius: 0; border-left: none; border-right: none;
		border-top: none; padding: 22px 20px 18px; margin-bottom: 0;
	}
	.page-title { font-size: 22px; }
	.page-meta { font-size: 11px; }

	.law-notice { margin: 0; border-radius: 0; border-left: none; border-right: none; border-top: none; }

	.section {
		border-radius: 0; border-left: none; border-right: none;
		border-bottom: none; margin-bottom: 0; padding: 20px 20px;
	}
	.section:first-of-type { border-top: 1px solid var(--border-md); }
	.section-num-badge { width: 28px; height: 28px; font-size: 10px; border-radius: 7px; }
	.section-title { font-size: 15px; }
	.section-body, .policy-list li { font-size: 13px; }

	.sec-grid { grid-template-columns: 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
	.arco-row { grid-template-columns: 100px 1fr; }

	.footer-note { border-radius: 0; border-left: none; border-right: none; margin-top: 0; }
}
