       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f8f9fa;
            padding: 20px;
        }
        
        .container {
            text-align: center;
            max-width: 500px;
            width: 100%;
        }
        
        .icon {
            font-size: 48px;
            margin-bottom: 30px;
            color: #666;
        }
        
        h1 {
            font-size: 32px;
            font-weight: 300;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        
        .highlight {
            font-weight: 600;
            color: #000;
        }
        
        .divider {
            width: 60px;
            height: 1px;
            background-color: #ddd;
            margin: 30px auto;
        }
        
        .contact {
            color: #666;
            font-size: 16px;
            margin-top: 40px;
        }
        
        .email {
            color: #0066cc;
            text-decoration: none;
        }
        
        .email:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 600px) {
            h1 {
                font-size: 24px;
            }
            
            .icon {
                font-size: 36px;
            }
        }