/* Bottom Bar (Footer) Styles */
.footer-bottom {
    text-align: left;
    color: white;
    padding: 1rem 2rem;
    background-color: #0f663c;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #f1c40f; /* gold-ish hover */
}
