@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    font-family: "Montserrat", sans-serif;
    font-weight: 500; 
}
/* Footer */
footer {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0;
}

footer h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

footer p {
    font-size: 1rem;
    color: #ddd;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #ff5722;
}

footer .social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #ff5722;
}

footer .footer-bottom {
    background-color: #1a252f;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer .footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #ddd;
}