﻿/* Two-column layout */
.two-column {
    display: flex;
    align-items: flex-start; /* Aligns content at the top */
}

/* Left Column for Text */
.text-column {
    flex: 1;
    padding-right: 10px;
}

/* Right Column for Image/Comparison Slider */
.image-column {
    flex: 1;
    text-align: center;
}
