body {
    font-family: Georgia, serif;
    line-height: 1.4;
    max-width: 750px;       /* Approx 19.8 cm */
    margin: 0 auto;         /* Center block horizontally, 0 top/bottom margin */
    padding: 0 15px;        /* 0 top/bottom padding, 15px side padding (approx 0.4 cm each) */
    box-sizing: border-box; /* Include padding in width calculation */
    text-align: left;       /* Ensure text is left-aligned */
}

ul {
    list-style-position: inside; /* Keep bullets aligned with text */
    padding-left: 0;        /* Remove default list indentation */
}

img {
    display: block;         /* Treat image as a block for centering */
    max-width: 100%;        /* Make image responsive */
    max-height: 500px;      /* Limit image height (approx 13.2 cm) */
    height: auto;           /* Maintain aspect ratio */
    margin: 1em auto;       /* Center image and add some vertical margin (optional) */
                                /* Use '0 auto' if no vertical margin is desired */
}

figcaption {
    font-style: italic;
    text-align: center;     /* Center caption text */
}
