            .section-title {
                color: #8B4513;
                font-size: 24px;
                font-weight: 600;
                margin-bottom: 25px;
                text-align: left;
                padding-left: 10px;
            }

            .slider-container {
                position: relative;
                overflow: hidden;
                border-radius: 15px;
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                padding: 20px 0;
            }

            .slider-wrapper {
                display: flex;
                transition: transform 0.3s ease-in-out;
                gap: 15px;
                padding: 0 15px;
            }

            .profile-card {
                flex: 0 0 280px;
                height: 320px;
                position: relative;
                border-radius: 20px;
                overflow: hidden;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            }

            .profile-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
            }

            .profile-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .profile-card:hover .profile-image {
                transform: scale(1.05);
            }

            .profile-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
                padding: 40px 20px 25px;
                color: white;
            }

            .profile-name {
                font-size: 22px;
                font-weight: 600;
                margin-bottom: 8px;
                text-transform: capitalize;
            }

            .profile-location {
                font-size: 16px;
                opacity: 0.9;
                margin-bottom: 5px;
                display: flex;
                align-items: center;
                gap: 5px;
            }

            .profile-age {
                font-size: 14px;
                opacity: 0.8;
            }

            .availability-indicator {
                position: absolute;
                top: 15px;
                right: 15px;
                width: 12px;
                height: 12px;
                background: #4CAF50;
                border-radius: 50%;
                border: 2px solid white;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
                animation: pulse 2s infinite;
            }

            @keyframes pulse {
                0% {
                    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
                }

                70% {
                    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
                }

                100% {
                    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
                }
            }

            .slider-controls {
                display: flex;
                justify-content: center;
                gap: 15px;
                margin-top: 25px;
            }

            .slider-btn {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.2);
                border: none;
                color: white;
                font-size: 20px;
                cursor: pointer;
                transition: all 0.3s ease;
                backdrop-filter: blur(10px);
            }

            .slider-btn:hover {
                background: rgba(255, 255, 255, 0.3);
                transform: scale(1.1);
            }

            .slider-btn:disabled {
                opacity: 0.5;
                cursor: not-allowed;
                transform: none;
            }

            .slider-dots {
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-top: 20px;
            }

            .dot {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.3);
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .dot.active {
                background: white;
                transform: scale(1.2);
            }

            /* Mobile optimizations */
            @media (max-width: 768px) {
                .container {
                    padding: 0 10px;
                }

                .section-title {
                    font-size: 20px;
                    margin-bottom: 20px;
                }

                .profile-card {
                    flex: 0 0 250px;
                    height: 380px;
                }

                .slider-wrapper {
                    gap: 12px;
                    padding: 0 10px;
                }

                .profile-name {
                    font-size: 20px;
                }

                .profile-location {
                    font-size: 15px;
                }
            }

            @media (max-width: 480px) {
                .profile-card {
                    flex: 0 0 220px;
                    height: 250px;
                }

                .slider-wrapper {
                    gap: 10px;
                    padding: 0 8px;
                }

                .profile-overlay {
                    padding: 30px 15px 20px;
                }

                .profile-name {
                    font-size: 18px;
                }
            }

            /* Touch scroll for mobile */
            @media (max-width: 768px) {
                .slider-container {
                    overflow-x: auto;
                    -webkit-overflow-scrolling: touch;
                    scrollbar-width: none;
                    -ms-overflow-style: none;
                }

                .slider-container::-webkit-scrollbar {
                    display: none;
                }

                .slider-wrapper {
                    flex-wrap: nowrap;
                    width: max-content;
                }
            }