        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
			line-height:1.5;
            background: #f5f5f5;
            min-height: 100vh;          
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .maintenance-container {
            text-align: left;
            padding: 2rem;
            max-width: 600px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin: 20px;
			margin-bottom: 12vh;
        }
		.content{
			color:#656565;
			padding-left:10px;
		}

        h1 {
            color: #333;
            margin-bottom: 1rem;
        }

        p {
            color: #656565;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
		
		footer{
		   position:absolute;
		   bottom:0;
		   height:30px;		   
		   width:100%;
		   border-top:1px dashed #bbb;
		   text-align:center;
		}
		footer a{
		   color:#777;
		   font-size:12px;
		   text-decoration:none;
		}
		footer a:hover{
		   color:#777;
		   font-size:12px;
		   text-decoration:none;
		}
		
		
		
		