body {
    width: auto !important;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 60px;
    float: none !important;
    position: static !important;
}

.wrapper {
    width: auto !important;
    margin: 0 !important;
}

section {
    width: auto !important;
    float: none !important;
    padding-bottom: 20px !important;
}

/* Image styling */
img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.image-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.image-group img {
    margin: 0;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

figcaption {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

header, footer {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding: 20px 30px;
    }
    .image-group {
        flex-direction: column;
        align-items: center;
    }
    .image-group img {
        width: 90% !important;
        max-width: 400px;
    }
}