body {
            margin: 0;
            padding: 0;
            font-family: "Segoe UI", Tahoma, sans-serif;
            background: linear-gradient(135deg, #0d3b66, #1d3557);
            color: #fff;
            text-align: center;
        }

        .container {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .logo {
            width: 80%;
            margin-bottom: 20px;
			background: #fff;
    padding: 10px;
        }

        h1 {
            font-size: 40px;
            margin-bottom: 10px;
        }

        p {
            font-size: 18px;
            max-width: 600px;
            line-height: 1.6;
        }

        .box {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 12px;
            backdrop-filter: blur(8px);
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
        }

        .contact {
            margin-top: 20px;
            font-size: 16px;
            color: #ddd;
        }

        .footer {
            position: absolute;
            bottom: 10px;
            font-size: 14px;
            color: #ccc;
        }

        @media (max-width: 600px) {
            h1 {
                font-size: 28px;
            }
            p {
                font-size: 16px;
            }
        }