body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* White background */
    color: #333;
    padding-bottom: 60px; /* Add padding to prevent footer overlap */
}
header {
    background-color: #0251CB; /* Hooz Blue */
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header img.logo {
    height: 50px; /* Adjust as needed */
    margin-right: 20px;
}
header h1 {
    margin: 0;
    font-size: 2em;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav ul li {
    margin-left: 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.container {
    padding: 20px;
    /* text-align: center; */ /* Removing this to allow for more flexible content alignment */
}
/* Styles specific to index.html's container */
.container.main-page {
    text-align: center;
}

.container h1, .container h2 {
    color: #0251CB; /* Hooz Blue */
}
.app-links {
    margin-top: 30px;
}
.app-links a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    background-color: #0251CB; /* Hooz Blue */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.app-links a:hover {
    background-color: #023a94; /* Darker blue for hover */
}
footer {
    background-color: #f2f2f2;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #ddd;
} 