/* Make the whole page readable like other pages */
.page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Make header/title match other pages */
h1 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Stack images normally */
.additionalimages {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Make image containers fill width properly */
.additional-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Make images readable and not tiny */
.additional-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.15);
}

/* Make nav buttons same size as other pages */
nav ul li a {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
}
