* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #a5a5a5;
    margin: 0;
    padding: 0;
    color: #000000;
}

header {
    background: #000000;
    color: rgb(255, 245, 245);
    padding: 20px;
}

main {
    padding: 20px;
}

.comparison-section {
    margin-bottom: 40px;
}

.img-comp-container {
    position: relative;
    width: 50%;
    max-width: 600px;
    margin: 20px auto;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.img-comp-img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.img-comp-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.img-comp-overlay {
    width: 100%;
    clip-path: inset(0 50% 0 0);
}

.img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    width: 40px;
    height: 40px;
    background-color: #FF5722;
    opacity: 0.9;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}