body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
            color: #333;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }

        header {
            background-color: #1E1D30;
            color: white;
            width: 100%;
            padding: 20px 0;
            text-align: center;
        }

        header img {
            max-width: 150px;
            display: block;
            margin: 0 auto 10px;
        }

        header h1 {
            margin: 0;
            font-size: 24px;
        }

        .language-switch {
            margin-top: 10px;
        }

        .language-switch a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 14px;
        }

        .language-switch a:hover {
            text-decoration: underline;
        }

        main {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 600px;
            width: 90%;
        }

        main h2 {
            margin-top: 0;
            color: #1E1D30;
        }

        main p {
            margin: 10px 0;
            line-height: 1.6;
        }
		
		main a {
            color: #1E1D30;
            text-decoration: underline;
        }

        main a:hover {
            text-decoration: underline;
        }

        footer {
            margin-top: 20px;
            font-size: 14px;
            color: #777;
            text-align: center;
        }

        footer a {
            color: #1E1D30;
            text-decoration: underline;
        }

        footer a:hover {
            text-decoration: underline;
        }
		
		testblock {
			display: block;
			text-align: left;
		}