body {
            margin: 0;
            padding: 0;
            background-color: #ffffff;
            font-family: "Georgia", "Times New Roman", serif;
            color: #3b2b4a;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .page {
            position: relative;
            max-width: 900px;
            padding: 40px 60px 50px;
            background-color: #ffffff;
            border: 3px solid #d4af37; /* gold */
            box-shadow: 0 0 30px rgba(75, 0, 130, 0.15); /* violet */
        }

        .page::before {
            content: "";
            position: absolute;
            inset: 15px;
            border: 1px solid #b58b2a; /* darker gold */
            pointer-events: none;
        }

        h1 {
            text-align: center;
            font-size: 2.2rem;
            letter-spacing: 0.12rem;
            text-transform: uppercase;
            color: #5e3f99; /* royal violet */
            margin-top: 0;
            margin-bottom: 0.35rem;
        }

        .subtitle {
            text-align: center;
            color: #b58b2a;
            font-style: italic;
            margin-bottom: 1.8rem;
        }

        .ornement {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .ornement span {
            display: inline-block;
            width: 60px;
            height: 2px;
            background: linear-gradient(to right, #b58b2a, #5e3f99, #b58b2a);
            margin: 0 8px;
        }

        .ornement .fleur {
            color: #b58b2a;
            font-size: 1.1rem;
        }

        .portrait {
            text-align: center;
            margin: 0 auto 2rem;
        }

        .portrait img {
            max-width: 100%;
            border: 3px solid #d4af37;
            box-shadow: 0 0 18px rgba(75, 0, 130, 0.22);
        }

        .portrait figcaption {
            font-size: 0.85rem;
            color: #5e3f99;
            margin-top: 0.4rem;
        }

        .portrait figcaption a {
            color: #b58b2a;
            text-decoration: none;
        }

        .portrait figcaption a:hover {
            text-decoration: underline;
        }

        p {
            line-height: 1.8;
            font-size: 1.05rem;
            text-align: justify;
            margin: 0 0 1rem;
        }

        .initial {
            font-size: 2.6rem;
            float: left;
            line-height: 1;
            padding-right: 0.3rem;
            color: #b58b2a;
        }

        .signature {
            margin-top: 2.5rem;
            text-align: right;
        }

        .signature-name {
            font-weight: bold;
            color: #5e3f99;
            font-size: 1.1rem;
        }

        .signature-meta {
            font-size: 0.95rem;
            color: #555555;
        }
