* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header {
    margin-bottom: 40px;
    border-bottom: 3px solid #007AFF;
    padding-bottom: 20px;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 10px;
}

.updated-date {
    font-size: 14px;
    color: #86868b;
    margin-top: 8px;
}

main {
    margin-bottom: 40px;
}

section {
    margin-bottom: 32px;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    margin-top: 24px;
}

h3 {
    font-size: 17px;
    font-weight: 600;
    color: #424245;
    margin-bottom: 12px;
    margin-top: 16px;
}

p {
    font-size: 16px;
    color: #424245;
    margin-bottom: 12px;
    line-height: 1.7;
}

ol, ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

li {
    font-size: 16px;
    color: #424245;
    margin-bottom: 8px;
    line-height: 1.6;
}

ol li {
    padding-left: 8px;
}

ul li {
    list-style-type: disc;
}

/* 개인정보 보호책임자 박스 */
.privacy-contact {
    background-color: #f5f5f7;
    padding: 20px;
    border-radius: 8px;
    margin: 16px 0;
}

.privacy-contact h3 {
    margin-top: 0;
    color: #007AFF;
}

.privacy-contact ul {
    margin-left: 0;
    list-style: none;
}

.privacy-contact li {
    padding: 4px 0;
}

/* 연락처 정보 박스 */
.contact-info {
    background-color: #f5f5f7;
    padding: 20px;
    border-radius: 8px;
    margin: 16px 0;
}

.contact-info ul {
    margin-left: 0;
    list-style: none;
}

.contact-info li {
    padding: 4px 0;
}

/* 하이라이트 박스 */
.highlight-box {
    background-color: #e8f4fd;
    border-left: 4px solid #007AFF;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.highlight-box h2 {
    margin-top: 0;
    color: #007AFF;
}

/* 표 스타일 */
.summary-table {
    overflow-x: auto;
    margin-top: 16px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e5e7;
}

th {
    background-color: #007AFF;
    color: white;
    font-weight: 600;
    font-size: 15px;
}

td {
    font-size: 15px;
    color: #424245;
}

tr:last-child td {
    border-bottom: none;
}

/* Footer */
footer {
    border-top: 1px solid #e5e5e7;
    padding-top: 24px;
    text-align: center;
}

.company-info {
    font-size: 14px;
    color: #86868b;
    line-height: 1.8;
    margin-bottom: 16px;
}

.copyright {
    font-size: 13px;
    color: #a1a1a6;
}

/* 강조 텍스트 */
strong {
    font-weight: 600;
    color: #1d1d1f;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 24px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    h3 {
        font-size: 16px;
    }
    
    p, li {
        font-size: 15px;
    }
    
    ol, ul {
        margin-left: 16px;
    }
}

/* iOS Safari 최적화 */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-text-size-adjust: 100%;
    }
    
    .container {
        -webkit-overflow-scrolling: touch;
    }
}
