        body {
            font-family: 'Arial', sans-serif;
            background-color: #f5f5f5;
            color: #333;
            text-align: center;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        
        .container {
            max-width: 800px;
            padding: 40px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .logo {
            max-width: 250px;
            margin-bottom: 30px;
        }
        
        h1 {
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        
        .construction-icon {
            font-size: 50px;
            margin-bottom: 20px;
            color: #f39c12;
        }
        
        .social-links {
            margin-top: 30px;
        }
        
        .social-links a {
            margin: 0 10px;
            color: #3498db;
            text-decoration: none;
            font-size: 16px;
        }
        
        .social-links a:hover {
            text-decoration: underline;
        }