        .container_1 {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
      /*      max-width: 1200px;*/
            padding: 20px;
            box-sizing: border-box;
        }
        .left-section, .right-section {
            width: 100%;
            margin-bottom: 20px;
        }
        .right-section {
            display: flex;
            justify-content: center;
        }
        .slider {
            position: relative;
            width: 100%;
            max-width: 700px;
            overflow: hidden;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            min-width: 100%;
            box-sizing: border-box;
            display: none;
        }
        .slide img {
            width: 100%;
            border-radius: 10px;
        }
        .navigation {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
        .prev, .next {
            background-color: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
        }
        .dots {
            text-align: center;
            position: absolute;
            bottom: 10px;
            width: 100%;
        }
        .dot {
            cursor: pointer;
            height: 10px;
            width: 10px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
        }
        .dot.active {
            background-color: #717171;
        }
        @media (min-width: 768px) {
            body {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
            }
            .container_1 {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
            }
            .left-section, .right-section {
                width: 50%;
                margin-bottom: 0;
            }
        }