
body {
    background-color: #ffffff;
    color: #5aa5d9;
}

.navbar {
    background-color: #5aa5d9;
    color: #ffffff;
    height: 60px; /* Standard navbar height */
    position: relative;
    z-index: 1;
}

.navbar-brand img {
    position: absolute;
    top: 0px; /* Ensure the logo doesn't extend above the viewport */
    left: 20px;
    max-height: 160px;  /* Adjust height to fit within the viewport */
    width: auto;
    z-index: 2;
    border: 3px solid black; /* Added black border around the logo */
}

.navbar-nav {
    margin-left: auto;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

.hero {
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
}

.hero .container {
    background-color: rgba(0, 0, 0, 0.6); /* Translucent dark box */
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    max-width: 600px; /* Set a maximum width to fit content */
    margin: 0 auto; /* Center the box */
}

.card-title, .card-text {
    color: #0056b3;
}

.footer {
    background-color: #5aa5d9;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}
