
        body {
            margin: 0;
            font-family: 'Segoe UI', Arial, sans-serif;
            background: linear-gradient(135deg, #e6f4ff, #cce7ff);
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            color: #1a3c5e;
        }

        .container {
            background: white;
            padding: 60px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
            text-align: center;
            max-width: 500px;
            width: 90%;
        }

        .logo {
            max-width: 350px;
            margin-bottom: 40px;
        }

        .info {
            font-size: 18px;
            line-height: 1.8;
        }

        .info p {
            margin: 10px 0;
        }

        .contact {
            margin-top: 25px;
            font-weight: 500;
        }

        .contact a {
            color: #0077cc;
            text-decoration: none;
        }

        .contact a:hover {
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            .container {
                padding: 40px 25px;
            }
        }
