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

body {
    font-family: 'Inter', 'Noto Sans KR', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #684DF4;
}

.header h1 {
    font-size: 28px;
    color: #684DF4;
    margin-bottom: 10px;
}

.header .company {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    text-align: right;
}
.header .version {
    font-size: 16px;
    color: #684DF4;
    font-weight: 500;
    padding-left:10px
}

.article {
    margin-bottom: 35px;
}

.article-title {
    font-size: 20px;
    font-weight: 700;
    color: #684DF4;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #684DF4;
}

.article-content {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 12px;
}

.article-content ol,
.article-content ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content ol ol,
.article-content ul ul {
    margin-left: 30px;
    margin-top: 8px;
}

.article-content ol ol li,
.article-content ul ul li {
    margin-bottom: 6px;
}

.number-parentheses {
    list-style-type: none;
    counter-reset: parentheses-counter;
}

.number-parentheses > li {
    position: relative;
    padding-left: 35px;
    counter-increment: parentheses-counter;
}

.number-parentheses > li::before {
    content: '(' counter(parentheses-counter) ')';
    position: absolute;
    left: 0;
}

.number-circle {
    list-style-type: none;
}

.number-circle > li {
    position: relative;
    padding-left: 30px;
}

.number-circle > li::before {
    content: '';
    position: absolute;
    left: 0;
}

.number-circle > li:nth-child(1)::before { content: '①'; }
.number-circle > li:nth-child(2)::before { content: '②'; }
.number-circle > li:nth-child(3)::before { content: '③'; }
.number-circle > li:nth-child(4)::before { content: '④'; }
.number-circle > li:nth-child(5)::before { content: '⑤'; }
.number-circle > li:nth-child(6)::before { content: '⑥'; }

.sub-item {
    margin-left: 20px;
    margin-top: 8px;
}

.sub-sub-item {
    margin-left: 20px;
    margin-top: 6px;
}

.list-square {
    list-style-type: square;
    margin-left: 20px;
}

.list-circle {
    list-style-type: disc;
    margin-left: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
}

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

table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #684DF4;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.additional-notice {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #684DF4;
}

.additional-notice .article-title {
    margin-top: 0;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 20px;
    }

    .header h1 {
        font-size: 22px;
    }

    .header .company {
        font-size: 14px;
    }

    .article-title {
        font-size: 18px;
    }

    .article-content {
        font-size: 14px;
    }

    .article-content ol,
    .article-content ul {
        margin-left: 15px;
    }

    .article-content ol ol,
    .article-content ul ul {
        margin-left: 20px;
    }

    table {
        font-size: 12px;
    }

    table th,
    table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .header h1 {
        font-size: 20px;
    }

    .article-title {
        font-size: 16px;
    }

    .article-content {
        font-size: 13px;
    }

    table {
        font-size: 11px;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    table th,
    table td {
        padding: 6px;
    }
}

