
            /* General Styles */
            .list-container {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            max-width: 400px;
            width: 100%;
            }

            .styled-list {
                list-style: none;
                padding: 0;
                margin: 0;
                width: 100%;
                max-width: 700px;
            }

            .styled-list li {
            display: flex;
            align-items: center;
            padding: 10px;
            margin: 10px 0;
            background-color: #f1f1f1;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            }

            .styled-list li:hover {
            background-color: #e0e0e0;
            }

            .icon {
            font-size: 24px;
            margin-right: 10px;
            }

            .text {
            font-size: 16px;
            color: #555;
            }

            .text em {
            font-style: italic;
            color: #2c3e50;
            }



            .styled-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .styled-list li {
                display: flex;
                align-items: center;
                padding: 10px;
                margin: 10px 0;
                border-radius: 8px;
                transition: background-color 0.3s ease;
                font-family: 'Arial', sans-serif;
            }

            .styled-list li:hover {
                background-color: #f0f8ff;  /* Light blue on hover */
            }

            .icon {
                width: 100px;
                aspect-ratio: 1;
                font-size: 24px;
                margin-right: 15px;
                padding: 8px;
                border-radius: 50%;
                background-color: #f8f9fa;
                color: #6c757d;
                transition: transform 0.3s ease, color 0.3s ease;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

            .icon i{
                font-size: 30px;
            }

            .icon:hover {
                transform: scale(1.1);
                color: #007bff;  /* Blue color on hover */
            }

            .text {
                font-size: 1.5em;
                color: #333;
                text-transform: capitalize;
                transition: color 0.3s ease;
            }

            .text:hover {
                color: #007bff;  /* Blue color on text hover */
            }

            .styled-list li:nth-child(1) .icon {
                background-color: #ff6347; /* Tomato red for Influencer Strategy */
                color: #fff;
            }

            .styled-list li:nth-child(2) .icon {
                background-color: #32cd32; /* Lime green for Talent & Partnership Sourcing */
                color: #fff;
            }

            .styled-list li:nth-child(3) .icon {
                background-color: #ffa500; /* Orange for Contact & Negotiate */
                color: #fff;
            }

            .styled-list li:nth-child(4) .icon {
                background-color: #8a2be2; /* Blue-violet for Content Licensing */
                color: #fff;
            }

            .styled-list li:nth-child(5) .icon {
                background-color: #20b2aa; /* Light sea green for Quality Control */
                color: #fff;
            }

            .styled-list li:nth-child(6) .icon {
                background-color: #ff1493; /* Deep pink for Amplification */
                color: #fff;
            }

            .styled-list li:nth-child(7) .icon {
                background-color: #1e90ff; /* Dodger blue for Reporting */
                color: #fff;
            }