     .carousel-container {
            width: 100%;
            max-width: 100%;
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .carousel-wrapper-container {
            display: flex;
            align-items: center;
            gap: 30px;
            position: relative;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            background: transparent;
            height: 280px;
            flex: 1;
            min-width: 0;
        }

        .nav-button {
            background-color: transparent;
            color: #000000;
            border: none;
            padding: 10px 15px;
            font-size: 32px;
            border-radius: 6px;
            cursor: pointer;
            transition: color 0.3s, transform 0.2s;
            z-index: 10;
            flex-shrink: 0;
        }

        .nav-left {
            order: -1;
        }

        .nav-right {
            order: 1;
        }

        .nav-button:hover {
            color: #333333;
            transform: scale(1.2);
        }

        .nav-button:active {
            transform: scale(0.95);
        }

        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .slide {
            min-width: 25%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            font-weight: bold;
            color: white;
            text-align: center;
            flex: 0 0 25%;
            padding: 15px;
        }

        .icon-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .icon-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .icon {
            font-size: 60px;
            line-height: 1;
        }

        .card-image {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
        }

        .icon-card p {
            font-size: 14px;
            margin: 0;
            font-weight: 600;
        }

        .slide-1 {
            background: transparent;
        }

        .slide-2 {
            background: transparent;
        }

        .slide-3 {
            background: transparent;
        }

        .slide-4 {
            background: transparent;
        }

        .slide-indicator {
            font-weight: bold;
            color: #333;
            font-size: 16px;
        }

        .dots {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 15px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: #667eea;
        }
    </style>