
        /* Carousel container */
        .carousel-wrap {
            position: relative;
            overflow: hidden;
            width: 100%;
            border-radius: 4px;
        }

        /* The sliding track */
        .carousel-track {
            display: flex;
            transition: transform 0.45s ease;
            will-change: transform;
        }

        /* Each slide */
        .carousel-track li {
            list-style: none;
            flex: 0 0 100%;
            width: 100%;
        }

        .carousel-track li img {
            display: block;
            width: 100%;
            height: auto;
        }

        /* Prev / Next buttons */
        .carousel-btn {
            position: absolute;
			top: 50%;
			transform: translateY(-50%);
			background: #006633;
			border: none;
			color: #ffffff;
			width: 38px;
			height: 38px;
			border-radius: 50%;
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
			z-index: 10;
			transition: background 0.2s;
			padding: 0;
			font-size: 22px;
			line-height: 1;
        }
        .carousel-btn:hover { background: rgba(0,0,0,0.7); }
        .carousel-btn.prev  { left:  10px; }
        .carousel-btn.next  { right: 10px; }

        /* Dot indicators */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 6px;
            padding: 8px 0 4px;
        }
        .carousel-dots button {
            width: 8px; height: 8px;
            border-radius: 50%;
            border: none;
            background: #ccc;
            cursor: pointer;
            padding: 0;
            transition: background 0.2s, transform 0.2s;
        }
        .carousel-dots button.active {
            background: #006633;
            transform: scale(1.3);
        }

