footer {
    background-color: lightgray;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    z-index: 1000;
}

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

footer p {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    color: black;
	font-size: 12px;
}

footer .social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .social-icons a {
    color: black;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #0077b5; /* LinkedIn blue (or your brand color) */
}

/* Prevent content being hidden under fixed footer */
body {
    padding-bottom: 50px;
}