/* Footer */
.footer-container {
    background-color: rgb(246, 246, 246);
    color: white;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    height: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* Footer Links (Left) */
.footer-links {
    display: flex;
    gap: 20px;
    max-width: 325px;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Copyright (Center) */
.footer-copyright {
    text-align: center;
    flex: 1;
    font-size: 14px;
    color: #000000;
    margin-top: 15px;
    font-size: 16px;
}

/* Footer Icons (Right) */
.footer-icons {
    display: flex;
    gap: 20px;
}

.icon {
    position: relative;
    cursor: pointer;
}

.icon i {
    font-size: 20px;
    color: black;
}

.icon-info {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    display: none;
    font-size: 12px;
}

.icon:hover .icon-info {
    display: block;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 10px 0;
    background-color: #5a6268;
}

/* Media Queries */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-bottom: 10px;
    }

    .footer-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-container{
        height: 165px;
    }
}
