        body {
            font-family: Arial, sans-serif;
            text-align: center;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #333;
        }
        .container {
            max-width: 600px;
            background: white;
            padding: 40px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 10px;
            margin: 10px;
        }
        h1 {
            font-size: 2em;
            margin-bottom: 10px;
        }
        .services {
            margin-top: 20px;
            font-size: 0.9em;
            color: #777;
        }
        .contact {
            margin-top: 30px;
            font-size: 0.9em;
        }
        .footer {
            margin-top: 30px;
            font-size: 0.8em;
            color: #aaa;
        }
        a {
            color: #0056b3;
            text-decoration: none;
        }
        img.logo {
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
        }