.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
    margin-bottom: 2rem;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
h1 {
    font-weight: 700;
    margin-bottom: 1rem;
}
h3 {
    margin-top: 2rem;
    font-weight: 600;
}
p {
    line-height: 1.6;
    max-width: 800px;
    font-size: 16px;
}
ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    max-width: 800px;
}
h5 {
    margin-top: 1rem;
    font-weight: 600;
}
section.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

.section-separator {
    width: 100%;
    text-align: center;
    margin: 2rem 0;
}

.section-separator img {
    max-width: 250px;
    opacity: 0.8;
}
.section-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 3rem 0;
    gap: 2rem;
}

.section-block .section-text {
    flex: 1 1 400px;
    max-width: 550px;
}

.section-block .section-image {
    flex: 1 1 250px;
    text-align: center;
}

.section-block .section-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Image Right or Left */
/* Image Right or Left */
.section-block.image-right {
    flex-direction: row; /* default: text then image */
}

.section-block.image-left {
    flex-direction: row-reverse; /* flip: image then text */
}

@media screen and (max-width: 768px) {
    .section-block {
        flex-direction: column;
    }
    .section-block .section-text {
        order: 1;
    }
    .section-block .section-image {
        order: 2;
    }
}

img {
    width: fit-content;
}