.image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    margin: 20px 0;
}

.image-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1 1 300px;
    max-width: 820px;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    border-radius: 8px;
}

.video-container {
    position: relative;
    margin: 0 0 20px 0;
    width: 100%;
    max-width: 720px;
    height: 405px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .video-container {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .image-row {
        flex-direction: column;
        align-items: center;
    }

    .image-container {
        max-width: 90%;
    }
}