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

/* Variables for easier theme management */
:root {
    --primary-color: #4A90E2; /* A friendly blue */
    --secondary-color: #F5A623; /* A warm orange accent */
    --text-color: #333333;
    --light-text-color: #555555;
    --background-color: #f9f9f9;
    --container-bg: #ffffff;
    --footer-bg: #eeeeee;
    --heading-font: 'Nunito', sans-serif;
    --body-font: 'Roboto', sans-serif;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: var(--container-bg);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 70vh; /* Ensure container takes up decent height */
}

header {
    margin-bottom: 30px;
}

.logo {
    height: 200px; /* Adjust this value to make the logo bigger or smaller */
    width: auto;  /* This maintains the correct aspect ratio */
}

main {
    flex-grow: 1; /* Allows main content to push footer down */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically in main */
}

.hero {
    animation: fadeIn 1s ease-in-out;
}

.hero-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
    animation: bounce 2s infinite ease-in-out; /* Add a little life */
}


h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem; /* Responsive font size */
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--light-text-color);
    margin-bottom: 25px;
    max-width: 500px; /* Prevent subtitle from getting too wide */
    margin-left: auto;
    margin-right: auto;
}

.status {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    background-color: rgba(245, 166, 35, 0.1); /* Light orange background */
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block; /* So background doesn't take full width */
}

footer {
    margin-top: 40px; /* Pushes footer down */
    padding-top: 20px;
    border-top: 1px solid var(--footer-bg);
    font-size: 0.9rem;
    color: var(--light-text-color);
}

/* Simple fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Simple bounce animation for icon */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}


/* Responsive adjustments */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    .container {
        padding: 25px;
        min-height: 80vh; /* Adjust height for smaller screens */
    }
    .logo {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .status {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .logo {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.3rem;
    }
    .subtitle {
        font-size: 0.95rem;
    }
    .status {
        font-size: 1rem;
        padding: 6px 12px;
    }
    footer {
        font-size: 0.8rem;
    }
}

.parent-company {
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
}
.parent-company a {
    color: var(--primary-color);
    text-decoration: none;
}
.parent-company a:hover {
    text-decoration: underline;
}