
        :root {
            --seal-gold: #b08968;
            --legal-blue: #001219;
            --parchment: #fcfaf2;
        }

        body {
            font-family: 'Times New Roman', Times, serif;
            margin: 0;
            background-color: #e5e5e5;
            color: #1a1a1a;
            line-height: 1.6;
        }

        /* DOCUMENT PAGE LOGIC */
        .document-page {
            max-width: 850px;
            margin: 50px auto;
            background-color: var(--parchment);
            padding: 80px; /* Large padding for desktop "parchment" look */
            box-shadow: 0 0 15px rgba(0,0,0,0.2);
            border: 1px solid #d1d1d1;
            position: relative;
        }

        /* Decorative border */
        .document-page::before {
            content: "";
            position: absolute;
            top: 20px; left: 20px; right: 20px; bottom: 20px;
            border: 1px solid #e0d7c6;
            pointer-events: none;
        }

        header {
            text-align: center;
            margin-bottom: 50px;
        }

        .city-seal {
            font-size: 3.5rem;
            margin-bottom: 10px;
            color: var(--seal-gold);
        }

        h1 {
            font-size: 2.2rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin: 0;
            color: var(--legal-blue);
        }

        .article-title {
            font-weight: bold;
            text-transform: uppercase;
            border-bottom: 2px solid var(--legal-blue);
            margin-top: 30px;
            display: block;
        }

        .section-head {
            font-weight: bold;
            font-style: italic;
            margin-top: 15px;
            display: block;
        }

        .latin-motto {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }

        /* SIGNATURE LOGIC */
        .signature-block {
            margin-top: 50px;
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }

        .sig-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .sig {
            border-top: 1px solid #000;
            width: 200px;
            text-align: center;
            padding-top: 5px;
            font-size: 0.9rem;
        }

        footer {
            margin-top: 60px;
            text-align: center;
            font-size: 0.8rem;
            border-top: 1px solid #ccc;
            padding-top: 20px;
        }

        /* MOBILE RESPONSIVENESS */
        @media (max-width: 768px) {
            .document-page {
                margin: 0; /* Remove top/bottom spacing on mobile */
                padding: 40px 25px; /* Shrink padding for small screens */
                box-shadow: none; /* Shadow looks messy on full-width mobile */
            }
            .document-page::before {
                top: 10px; left: 10px; right: 10px; bottom: 10px;
            }
            h1 { font-size: 1.5rem; letter-spacing: 2px; }
            .city-seal { font-size: 2.5rem; }
            
            .signature-block {
                flex-direction: column; /* Stack signatures vertically */
                align-items: center;
                gap: 40px;
            }
            .sig { width: 100%; max-width: 250px; }
        }
