.footer-dark {
    background-color: #1c1c1c;
    color: #adb5bd;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-dark h5 {
    color: #fff;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-dark .footer-logo {
    max-width: 180px;
}

.footer-dark .footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-dark .footer-links li {
    margin-bottom: 0.75rem;
}

.footer-dark .footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.2s ease-in-out, padding-left 0.2s ease-in-out;
}

.footer-dark .footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-dark .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease;
}

.footer-dark .social-icons a:hover {
    background-color: #13AE6F;
    transform: translateY(-2px);
}

.footer-dark .copyright {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    text-align: center;
}

.footer-dark .copyright a {
    color: #fff;
    font-weight: 500;
}