/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-left {
    float: left;
    width: 25%;
    margin: 5px 0;
    font-size: 0.9em;
}

.footer-mid {
    float: left;
    width: 50%;
}

.footer-mid img {
    width: 20%;
}

.footer-right {
    float: right;
    width: 25%;
    margin: 5px 0;
    font-size: 0.9em;
}

.footer-left hr, .footer-right hr {
    width: 80%;
    border: 0;
    border-top: 1px solid #555;
    margin: 10px auto;
}

.footer a {
    color: #ddd;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffd700; /* Gold hover effect */
}

/* Clearfix for footer */
.footer::after {
    content: "";
    display: table;
    clear: both;
}