        .slideshow {
            width: 100%;
            max-width: 800px;
            margin: 10px auto;
            position: relative;
        }

        .image-description {
            text-align: center;
            margin-bottom: 10px;
            font-size: 18px;
            color: #333;
        }

        .large-image-container {
            position: relative;
            width: 100%;
            height: 760px;
            overflow: hidden;
            box-sizing: border-box;
			background-color: #ffffff;
        }

        .large-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .navigation {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .navigation button {
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .navigation button:hover {
            opacity: 1;
        }

        .navigation button svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .thumbnails {
            display: flex;
            overflow-x: auto;
            margin-top: 10px;
            padding: 10px;
        }

        .thumbnails img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            margin-right: 5px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.3s;
        }

        .thumbnails img.active {
            border-color: #007BFF;
        }

        .thumbnails img:last-child {
            margin-right: 0;
        }