#our-story-container {
    margin: 1rem auto;
    max-width: 85rem;
    padding: 3rem 2rem;
    width: 100%;
}

#our-story-container h2 {
    color: #5c2f1d;
    font-family: "IM Fell English", serif;
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 3.5rem;
    text-align: center;
}

#our-story-container p {
    font-family: "IM Fell English", serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.our-story-content {
    align-items: center;
    display: flex;
    gap: 4rem;
    padding: 5rem;
}

.our-story-content img {
    border-radius: 1.5rem;
    margin-top: 1rem;
    max-width: 100%;
    width: 420px;
}

@media (max-width: 65rem) {
    #our-story-container h2 {
        margin-bottom: 3rem;
        margin-top: 2rem;
        text-align: center;
    }

    .our-story-content {
        flex-direction: column-reverse;
        gap: 3rem;
        padding: 1rem;
        text-align: center;
    }

    .our-story-content img {
        max-width: 350px;
    }
}