.footer {
    background-color: var(--secondary-color);
    color: white;
}

.footer-col h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-yellow);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    color: white;
 }
.footer-bottom a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    margin-right: 10px;
}
.footer-bottom a:hover {
    color: var(--accent-yellow);
}