
       .gdw-widget-container {
            width: 100%;
            max-width: 100%;
            margin: 0;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            transition: all 0.3s ease;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .gdw-widget-container:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
        }

        .gdw-header-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 24px 32px;
            position: relative;
            overflow: hidden;
        }

        .gdw-header-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gdw-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23gdw-grain)"/></svg>');
            animation: gdw-float 20s ease-in-out infinite;
        }

        @keyframes gdw-float {
            0%, 100% { transform: translateX(0) translateY(0); }
            33% { transform: translateX(10px) translateY(-10px); }
            66% { transform: translateX(-10px) translateY(10px); }
        }

        .gdw-header-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .gdw-header-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .gdw-main-content {
            padding: 32px;
        }

        .gdw-description-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #374151;
            margin-bottom: 24px;
        }

        .gdw-feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 32px;
        }

        .gdw-feature-item {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .gdw-feature-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.15);
            border-color: #667eea;
        }

        .gdw-feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .gdw-feature-item:hover::before {
            transform: scaleX(1);
        }

        .gdw-feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            color: white;
            font-size: 20px;
        }

        .gdw-feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .gdw-feature-desc {
            color: #6b7280;
            line-height: 1.6;
        }

        .gdw-stats-wrapper {
            background: #f8fafc;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
        }

        .gdw-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
        }

        .gdw-stat-item {
            text-align: center;
            padding: 12px;
        }

        .gdw-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 4px;
        }

        .gdw-stat-label {
            color: #6b7280;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .gdw-cta-wrapper {
            text-align: center;
            padding: 24px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 12px;
        }

        .gdw-cta-title {
            margin-bottom: 12px;
            color: #374151;
        }

        .gdw-cta-subtitle {
            color: #6b7280;
            margin-bottom: 16px;
        }

        .gdw-cta-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 32px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 12px;
        }

        .gdw-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px -8px rgba(102, 126, 234, 0.4);
        }

        @media (max-width: 768px) {
            .gdw-header-section {
                padding: 16px;
            }
            
            .gdw-header-title {
                font-size: 1.5rem;
            }
            
            .gdw-header-subtitle {
                font-size: 1rem;
            }
            
            .gdw-main-content {
                padding: 16px;
            }
            
            .gdw-feature-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .gdw-stats-wrapper {
                padding: 16px;
            }
            
            .gdw-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            
            .gdw-stat-number {
                font-size: 2rem;
            }
            
            .gdw-cta-wrapper {
                padding: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .gdw-header-title {
                font-size: 1.3rem;
            }
            
            .gdw-description-text {
                font-size: 1rem;
            }
            
            .gdw-stats-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .gdw-stat-number {
                font-size: 1.8rem;
            }
            
            .gdw-feature-item {
                padding: 16px;
            }
        }
