.footer {
    width: 100%;
    background-color: #343A40;
    color: #F8F9FA;
    padding: 20px 0 0 0;
    display: flex;
    justify-content: center;
}

.footer-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #F8F9FA;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFD700; /* Gold color on hover */
}

.footer-social {
    margin-bottom: 10px;
}

.social-icon {
    width: 24px;
    height: 24px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 5px;
    display: inline-block;
}

.footer-info {
    font-size: 12px;
}