        .carousel-container {
            max-width: 1200px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            width: 100%;   
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            cursor: grab;
            width: fit-content;
        }

        .carousel-track:active {
            cursor: grabbing;
        }

        .carousel-title {
            font-size:22px;
            color: #658D18;
            margin:40px 0 20px 0;
        }

        .carousel-slide {
            flex: 0 0 auto;
            position: relative;
            width: 100%;
            margin-right: 20px;
        }

        .carousel-slide:last-child {
            margin-right: 0;
        }

        .slide-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius:8px;
           
        }

        .slide-description {
            padding: 20px 0px;
            text-align: center;
        }

        .slide-description p {
            line-height: 1.6;
            font-size: 14px;
            line-height: 1.2;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        .pagination {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .pagination-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            margin:2px 0px;
        }

        .pagination-dot.active {
            background: #658D18;
            transform: scale(1.3);
        }

        .navigation-buttons {
            display: none;
            gap: 10px;
        }

        .nav-button {
            width: 24px;
            height: 24px;
            border: none;
            background: #658D18;
            color: white;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        /* Desktop styles */
        @media (min-width: 768px) {
            .navigation-buttons {
                display: flex;
            }

            .carousel-controls {
                justify-content: space-between;
            }

            .pagination {
                flex: 1;
                justify-content: center;
            }
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }

       