@charset "utf-8";

/* 초기화 (Reset) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1E293B; /* 기본 텍스트 컬러 */
    background-color: #FFFFFF;
}

/* 링크 스타일 제거 */
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* 리스트 스타일 제거 */
ul, ol, li {
    list-style: none;
}

/* 버튼 및 폼 스타일 초기화 */
button, input, textarea {
    font-family: inherit;
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* 이미지 반응형 기본 설정 */
img {
    max-width: 100%;
    display: block;
}