/* --- CSS Variables for Easy Scaling --- */
:root {
    --primary-color: #1a365d; /* Professional deep navy */
    --text-color: #333333;
    --background-color: #f4f7f6;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* --- Base Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* --- Layout & Centering --- */
.landing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

.content-wrapper {
    max-width: 600px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* --- Typography & Elements --- */
.brand-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
}

.status-heading {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.status-message {
    font-size: 1.1rem;
    color: #555555;
}