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

        body {
            font-family: Georgia, 'Times New Roman', Times, serif;
            background-color: #ffffff;
            color: #333333;
            line-height: 1.8;
            padding: 2rem 1rem;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background-color: #ffffff;
        }

        .header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #000000;
        }

        .titulo-main {
            font-size: 2rem;
            font-weight: normal;
            margin-bottom: 0.5rem;
            color: #000000;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .subtitulo-main {
            font-size: 1.1rem;
            color: #666666;
            font-weight: normal;
            margin-bottom: 1rem;
        }

        .meta-info {
            font-size: 0.9rem;
            color: #666666;
            font-style: italic;
        }

        h2 {
            font-size: 1.5rem;
            font-weight: normal;
            color: #000000;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        h3 {
            font-size: 1.2rem;
            font-weight: normal;
            color: #000000;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }

        h4 {
            font-size: 1rem;
            font-weight: bold;
            color: #000000;
            margin-top: 1rem;
            margin-bottom: 0.5rem;
        }

        p {
            margin-bottom: 1rem;
            text-align: justify;
        }

        ul, ol {
            margin-left: 2.5rem;
            margin-bottom: 1rem;
        }

        li {
            margin-bottom: 0.5rem;
            text-align: justify;
        }

        .notice-box {
            border: 1px solid #000000;
            padding: 1.5rem;
            margin: 1.5rem 0;
            background-color: #f9f9f9;
        }

        .notice-box h4 {
            margin-top: 0;
            text-align: center;
            text-transform: uppercase;
        }

        .columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 1.5rem 0;
        }

        .footer {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #000000;
        }

        .footer-center {
            text-align: center;
            font-size: 0.9rem;
            color: #666666;
            margin-top: 2rem;
            font-style: italic;
        }

        hr {
            border: none;
            border-top: 1px solid #cccccc;
            margin: 2rem 0;
        }

        @media (max-width: 768px) {
            body {
                padding: 1rem 0.5rem;
            }

            .titulo-main {
                font-size: 1.5rem;
            }

            h2 {
                font-size: 1.3rem;
            }

            .columns {
                grid-template-columns: 1fr;
            }

            ul, ol {
                margin-left: 1.5rem;
            }
        }

        @media print {
            body {
                padding: 0;
            }

            .container {
                max-width: 100%;
            }
        }
