        .gallery-container {
            /*max-width: 1200px;*/
            /*max-width:400px;*/
            width: 100%;
            position: relative;
            /*background: rgba(255, 255, 255, 0.1);*/
            /*background-color: #98cfa0;*/
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), #98cfa0 );
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            
            margin-top: 60px;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .gallery-header h1 {
            color: white;
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 10px;
        }

        .gallery-header p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }

        .indicators{
            
            display: none!important;
            
        }
        
        @media screen and (max-width: 890px) {
        
            .gallery-wrapper {
                position: relative;
                overflow: hidden;
                border-radius: 15px;
                
                padding-left: 10px!important;
                
                height: auto!important;
            }
            
            .card-content p {
                
                font-size: 10px;
                padding: 15px;
                
            }
            
            
            
        }

        .gallery-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            
            padding-left: 30px;
            
            /*height: 450px;*/
            height: auto;
        }

        .gallery-track {
            display: flex;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            /*gap: 20px;*/
            gap: 60px;
            
        }

        .card {
            /*min-width: 300px;*/
            width: 300px;
            /*height: 400px;*/
            height: auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            flex-shrink: 0;
            margin-top: 20px;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .card-image {
            width: 100%;
            /*height: 200px;*/
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            font-weight: bold;
        }

        .card:nth-child(2n) .card-image {
            background: linear-gradient(45deg, #a8edea, #fed6e3);
        }

        .card:nth-child(3n) .card-image {
            background: linear-gradient(45deg, #ffecd2, #fcb69f);
        }

        .card:nth-child(4n) .card-image {
            background: linear-gradient(45deg, #667eea, #764ba2);
        }

        .card:nth-child(5n) .card-image {
            background: linear-gradient(45deg, #f093fb, #f5576c);
        }

        .card-content {
            padding: 20px;
        }
        
        .card-content h3 {
            
            margin-bottom: 20px;
            
        }
        
        .card-content p {
            
            font-size: 10px;
        
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .card-description {
            color: #666;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            color: #333;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .nav-button:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-button:active {
            transform: translateY(-50%) scale(0.95);
        }

        .nav-button.prev {
            /*left: -25px;*/
            left: 0;
        }

        .nav-button.next {
            /*right: -25px;*/
            right: 0;
        }

        .nav-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: translateY(-50%) scale(1);
        }

        .indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
            display: none!important;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            /*background: rgba(255, 255, 255, 0.4);*/
            background: rgba(0, 0, 0, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            /*background: white;*/
            background: #2d9051;
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .card {
                min-width: 250px;
                /*height: 350px;*/
                height: auto;
            }
            
            .gallery-header h1 {
                font-size: 2rem;
            }
            
            .nav-button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .card {
                min-width: 200px;
                /*height: 300px;*/
                height: auto;
            }
            
            .card-image {
                height: 150px;
                font-size: 2rem;
            }
            
            .gallery-container {
                padding: 20px 10px;
            }
        }