﻿#Blog {
    background-color: white;
    padding-top: 100px;
    padding-bottom: 100px;
}

.comparison-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-wrapper {
    display: flex;
    justify-content: space-between;
}

.image-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .image-item img {
        display: block;
        width: 100%;
        height: auto;
        transition: opacity 0.3s ease;
    }

    .image-item p {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.6);
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        margin: 0;
        font-size: 14px;
    }