body {
    font-family: sans-serif;
    margin: 20px;
    color: #333;
}

.content {
    margin-bottom: 40px; /* Space between each full section (images + text) */
}

.image-row {
    display: flex; /* Use Flexbox to align images horizontally */
    justify-content: space-around; /* Distributes space around images */
    gap: 5px; /* Space between the two images */
    margin-bottom: 15px; /* Space between the image row and the text below */
}

.image-row img {
    width: 38%; /* Each image takes up slightly less than half the container width, allowing for gap */
    height: auto; /* Maintain aspect ratio */
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5px;
}

.section-text {
    text-align: center; /* Center the text */
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 4px solid #007bff;
    margin: 0 5px; /* Adds slight margin to match image width roughly */
}

/* Optional: Add a media query for responsiveness on small screens */
@media (max-width: 600px) {
    .image-row {
        flex-direction: column; /* Stack images vertically on small screens */
        align-items: center;
    }
    .image-row img {
        width: 90%; /* Make images take up more width when stacked */
        margin-bottom: 10px;
    }
}