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

        body {
            font-family: 'Times New Roman', Times, serif;
            line-height: 1.6;
            color: #000000;
            background-color: #ffffff;
            padding: 40px;
            max-width: 800px;
            margin: 0 auto;
        } */

        .document-title {
            font-weight: bold;
            font-size: 16px;
            text-align: center;
            margin-bottom: 20px;
        }

        .intro-paragraph {
            text-align: justify;
            margin-bottom: 25px;
            font-size: 14px;
        }

        .article-title {
            font-weight: bold;
            font-size: 14px;
            margin: 25px 0 15px 0;
            text-decoration: underline;
        }

        .list-item {
            margin-left: 40px;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .sub-list-item {
            margin-left: 60px;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .paragraph {
            text-align: justify;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .emphasis {
            font-weight: bold;
        }

        .underline {
            text-decoration: underline;
        }

        .footer-date {
            font-weight: bold;
            text-align: center;
            margin-top: 30px;
            font-size: 14px;
        }

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