/* ------------------------------
   Global Base Style
   ------------------------------ */

/* 1. 리셋 & 박스 모델 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 3. 리스트, 링크, 버튼 초기화 */
ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

/* 4. 이미지, 테이블 */
img {
    max-width: 100%;
    display: block;
}

/* 6. 기본 레이아웃 유틸 (선택) */
.section-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}
.section-fade-in.active {
    opacity: 1;
    transform: translateY(0);
}