:root {
            --primary: #4285f4;
            --secondary: #34a853;
            --bg: #f8f9fa;
            --text: #333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        
        h1 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 2.0rem;
			color:#FFFFFF;
			padding:0px 50px;
			
        }
        
        .description {
           color:#FFFFFF;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .tool-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .tool-card h2 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .tool-card p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .tool-link {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s;
        }
        
        .tool-link:hover {
            background: #3367d6;
        }
        
        footer {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            color: #666;
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 20px;
            }
            
            .tools-grid {
                grid-template-columns: 1fr;
            }
        }