.container {
    padding: 100px 20%;
}

.container--brown {
    background-color: #2F191B;
}

.container p {
    color: #FFFFFF;
}

.historical-images {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.historical-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.historical-image {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

.historical-image-title {
    font-size: 1.5rem;
}

.historical-image-description {
    font-size: 1rem;
    text-align: center;
    max-width: 500px;
}

.flex-container {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .page-title {
        font-size: 2rem;
    }

    .container {
        padding: 2rem 5%;
    }

    .historical-images {
        flex-direction: column;
    }

    .flex-container {
        flex-direction: column;
    }
}