.our-story {
	margin-bottom: 50px;
	margin-top: 30px;
}

h1 {
	margin-top: 24px;
	margin-bottom: 20px;
}

.our-story h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.story-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.story-text {
    max-width: 600px;
    text-align: justify;
    font-size: 1.1em;
    color: #666;
}

.story-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.story-image,
.story-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .story-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .story-images {
        flex-direction: row;
        align-items: flex-start;
    }

    .story-image,
    .story-logo {
        max-width: 200px;
    }
}