/* Header Styles */
header {
    background-color: #009fe3;
    color: #f8f9fa;
    padding: 20px 0;
    min-height: 138px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo, Title, and Date Columns */
.col-logo {
    flex: 0 0 auto;
}

.col-logo img {
    max-width: 100px;
}

.col-title {
    flex: 1;
    text-align: center;
}

.col-title h1 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.col-date {
    flex: 0 0 auto;
    text-align: right;
}

.col-date h4 {
    font-size: 1rem;
    font-weight: normal;
    margin: 0;
}

/* Hide the Date Column on Smaller Screens */
@media (max-width: 991px) {
    .col-date {
        display: none;
    }
}


/* Footer Styles */
footer {
    background-color: #009fe3;
    color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
}

footer .row {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

footer .col-lg-8 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer .col-lg-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .col-lg-2 img {
    width: 50%;
    height: auto;
    display: block;
}

footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    footer p {
        font-size: 0.8rem;
    }

    footer .col-lg-2 img {
        width: 30%;
    }
}
