/* style_legal.css - 약관/방침 페이지 전용 스타일 */

/* 기본 설정 */
body, html {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* 상단 헤더 스타일 (뒤로가기, 제목) */
.legal-header {
    position: fixed; /* 화면 상단에 고정 */
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center; /* 제목을 중앙에 */
    z-index: 10;
}

/* 뒤로가기 화살표 스타일 */
.legal-header .back-arrow {
    position: absolute; /* 헤더 기준으로 위치 지정 */
    left: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #555;
    text-decoration: none;
    padding: 10px;
}

/* 제목 스타일 */
.legal-header h1 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* 실제 내용이 들어갈 영역 스타일 */
.legal-content {
    padding: 76px 20px 40px 20px; /* 상단 헤더에 가려지지 않게 위쪽 여백 확보 */
    line-height: 1.7;
    word-break: keep-all; /* 단어 중간에 줄바꿈 방지 */
}

/* 내용 안의 소제목 */
.legal-content h2 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* 내용 안의 문단 */
.legal-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}
