@import "reset.css";
@import "font.css";

.container {
    width: 100%;
    max-width: 960px; /* 데스크탑에서 너무 좁지 않도록 */
    margin: 3rem auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

body {
    line-height: 1.8;
    padding: 20px;
    max-width: 800px;
    margin: auto;
    font-size: 1rem;
}
h1 { font-size: 1.8rem; margin-bottom: 20px; }
h2 { font-size: 1.3rem; margin-top: 30px; }
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    overflow-x: auto;
}ㄴ
table, th, td { border: 1px solid #ccc; }
th, td { padding: 10px; text-align: left; }

ul li {
    position: relative;
    padding-left: 1.2em;
    margin: 0.5em 0;
    line-height: 1.6;
}

ul li::before {
    content: "•"; /* 또는 ▶, ✓ 등도 가능 */
    position: absolute;
    left: 0;
    color: #444;
    font-size: 1em;
    line-height: 1.4;
}
/* 반응형 처리 */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        max-width: 100%;
    }
    body { padding: 15px; font-size: 0.95rem; }
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.1rem; }
    th, td { font-size: 0.9rem; }
}