/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 2rem 0;
}

.footer .footer-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
}

.footer-nav {
    text-align: center;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #EEB600;
    /* Branding color */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #EEB600;
    /* Branding color on hover */
}

.footer-contact {
    text-align: center;
}

.footer-contact p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #EEB600;
    /* Branding color on hover */
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    font-size: 0.875rem;
    text-align: center;
}

.footer-social {
    text-align: center;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #EEB600;
    /* Branding color on hover */
}