#footer {
    position: absolute;
    bottom: 0;
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}

#footer div {
    color: #374151;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 30px;
    word-wrap: break-word;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
    #footer {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    #footer div {
        margin-bottom: 10px;
    }
}