
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        
        body {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            text-align: center;
            padding: 20px;
        }
        
        .app-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #000;
        }
        
        .subtitle {
            font-size: 18px;
            color: #333;
            margin-bottom: 40px;
        }
        
        .cta-button {
            background-color: #2196F3;
            color: white;
            border: none;
            border-radius: 25px;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .cta-button:hover {
            background-color: #0d8aee;
        }
        
        .legal-links {
            font-size: 14px;
            color: #666;
        }
        
        .legal-links a {
            color: #666;
            text-decoration: none;
            margin: 0 10px;
        }
        
        .legal-links a:hover {
            text-decoration: underline;
        }