.application-title {
    color: #022f56; /* Replace with your actual button blue color */
}

body, html {
    height: 100%; /* Ensure the body and html take the full height of the page */
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes the full height of the viewport */
}

#content-container {
    flex: 1 0 auto; /* Ensures the content container expands */
}

.application-box {
    border: 1px solid #b3a369;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #2a2a2a;
    color: white;
    flex-shrink: 0;
    width: 100%;
    margin-top: auto; /* Ensure the footer stays at the bottom */
}

.container-fluid {
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
}

footer .container-fluid {
    overflow: auto;
    padding: 10px 0;
}

footer h5 {
    color: #d4b375;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 1px solid #d4b375;
}

footer ul {
    padding-left: 0;
    list-style-type: none;
}

footer ul li {
    margin-bottom: 5px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

footer .social-media-links .fa {
    color: white;
    margin-right: 10px;
}

footer .social-media-links .fa:hover {
    color: #d4b375;
}

footer .container-fluid .row .col-lg-4 {
    padding: 15px 0;
}

footer .container-fluid .row .col-lg-4 p {
    color: black;
}

footer .container-fluid .row .col-lg-4 a {
    color: black;
    text-decoration: none;
}

footer .container-fluid .row .col-lg-4 a:hover {
    text-decoration: underline;
}

.features-boxed {
    margin-top: 3em;
    padding-bottom: 20px; /* Add padding to avoid clumping at the bottom */
    min-height: calc(100vh - 70px - 100px); /* Adjust the height based on navbar and footer */
}

/* Add space to ensure content isn’t cut off by fixed navbar */
.navbar-fixed-top + .features-boxed {
    margin-top: 70px; /* Adjust based on your navbar height */
}

