/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
    background: #ffffff;
    color: #0b0f19;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}
