<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Brattle Consulting Group - Expert Management Consultants</title>
    <link href="https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;700&display=swap" rel="stylesheet">
    <style>
         html, body {
            font-family: 'Red Hat Display', sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            height: 100vh;
            background-color: #f4f4f4;
            position: relative;
            overflow: hidden; /* Prevents scroll bars */
            width: 100%;
	}
        .container {
            text-align: center;
        }
        h1 {
            font-size: 2.5em;
            color: #333;
        }
        /* Diagonal 'Coming Soon' Tab */
        .coming-soon {
            position: absolute;
            top: 170px;
            right: -33px;
            background-color: royalblue;
            color: white;
            padding: 10px 50px;
            font-size: 1.2em;
            font-weight: bold;
            transform: rotate(45deg);
            transform-origin: top right;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            width: 200px;
            text-align: center;
        }
       /* Footer Styling */
        .footer {
            width: 100%;
            text-align: center;
            padding: 10px 0;
            background-color: #333;
            color: white;
            font-size: 0.9em;
            position: absolute;
            bottom: 0px;
        }
    </style>
</head>
<body>
    <div class="coming-soon">Coming Soon</div>
    <div class="container">
        <h1>Brattle Consulting Group</h1>
        <p>Management consultants specializing in AI-powered business automation solutions.</p>
    </div>
	<footer class="footer">
        &copy; 2025 Brattle Consulting Group, LLC. All rights reserved.
    </footer>
</body>
</html>
