 
        /* Color Picker Styles */
        .color-picker-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .color-wheel-container {
            flex: 1;
            min-width: 300px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .color-wheel-wrapper {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .color-wheel {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(
                #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000
            );
            position: relative;
            cursor: crosshair;
        }
        
        .color-selector {
            width: 20px;
            height: 20px;
            border: 2px solid white;
            border-radius: 50%;
            position: absolute;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 5px rgba(0,0,0,0.5);
            pointer-events: none;
        }
        
        .color-preview {
            flex: 1;
            min-width: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .color-display {
            width: 100%;
            height: 150px;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border: 1px solid var(--border-color);
        }
        
        .color-values {
            width: 100%;
            background-color: var(--light-gray);
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
        }
        
        .color-value-group {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .color-value-group:last-child {
            margin-bottom: 0;
        }
        
        .color-label {
            width: 60px;
            font-weight: 600;
        }
        
        .color-value {
            flex-grow: 1;
            font-family: 'Courier New', monospace;
            background-color: white;
            padding: 0.5rem;
            border-radius: 4px;
            border: 1px solid #eee;
        }
        
        .copy-btn {
            margin-left: 0.5rem;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 0.4rem 0.75rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .copy-btn:hover {
            background-color: var(--light-gray);
        }
        
        /* Slider Controls */
        .slider-container {
            margin-bottom: 1.5rem;
        }
        
        .slider-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        
        .slider-value {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .slider {
            -webkit-appearance: none;
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: #ddd;
            outline: none;
        }
        
        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary-color);
            cursor: pointer;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .slider::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary-color);
            cursor: pointer;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        /* Color Palettes */
        .palette-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .palette-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .palette-title {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .palette {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .palette:hover {
            transform: translateY(-5px);
        }
        
        .palette-color {
            height: 80px;
            position: relative;
            cursor: pointer;
        }
        
        .palette-info {
            padding: 0.75rem;
            font-size: 0.9rem;
        }
        
        .palette-hex {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .palette-rgb {
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        
        /* Color Theory */
        .color-theory {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .theory-card {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
        }
        
        .theory-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .theory-colors {
            display: flex;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
        }
        
        .theory-color {
            flex: 1;
            position: relative;
            cursor: pointer;
        }
        
        .theory-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0,0,0,0.6);
            color: white;
            padding: 0.25rem;
            font-size: 0.8rem;
            text-align: center;
        }
        
       
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .color-picker-container {
                flex-direction: column;
            }
            
            .color-wheel-wrapper {
                width: 250px;
                height: 250px;
            }
        }
        
        /* Tips and Information */
        .info-tip {
            background-color: rgba(44, 125, 160, 0.05);
            border-left: 3px solid var(--primary-color);
            padding: 1rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
            display: flex;
            align-items: flex-start;
        }
        
        .tip-icon {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-right: 0.75rem;
            margin-top: 0.2rem;
        }
        
        .tip-content h4 {
            margin-top: 0;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .tip-content p {
            margin-bottom: 0;
        }
    