body {
            font-family: Arial, sans-serif;
            text-align: center;
            background-color: #111;
            color: white;
            margin: 0;
            padding: 0;
        }
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
        }
        .logo {
            font-size: 3rem;
            font-weight: bold;
            color: #e63946;
        }
        .cta {
            margin-top: 20px;
            font-size: 1.2rem;
        }
        .cta button {
            background-color: #e63946;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 1rem;
            cursor: pointer;
            border-radius: 5px;
        }
        .cta button:hover {
            background-color: #ff4b5c;
        }