.footer {
    background-color: #222;
    color: rgb(255, 255, 255);
    padding: 15px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
}

.footer-item {
    color: rgb(255, 255, 255);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-item i {
    margin-right: 8px;
    font-size: 16px;
}

/* Hover effect */
.footer-item:hover {
    color: #ffcc00;
}

/* Desktop-only icons */
.desktop-only {
    display: block;
}

/* Mobile view */
@media (max-width: 768px) {

    .footer {
            background-color: #e9e3e3;
            color: rgb(32, 29, 29);
            padding: 5px 10px;
        }

    .desktop-only {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
       
    }

    .footer-item {
        font-size: 16px;
        color: rgb(32, 29, 29);
    }
}