﻿footer {
    background: rgba(24, 24, 28, 1);
    padding: 20px 5rem;
    color: white;
}

footer .footer-description {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(158, 158, 158, 1);
    width: 75%;
}

footer .nav-links {
    margin-top: 20px;
}

footer .nav-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

footer .nav-links li a {
    text-decoration: none;
    color: rgba(158, 158, 158, 1);
    font-size: 1rem;
    transition: color 0.3s;
    padding: 5px 0;
}

footer .nav-links li a:hover {
    color: white;
}

footer .contact-info {
    margin-top: 30px;
    font-size: 1rem;
    color: rgba(158, 158, 158, 1);
}

footer .contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}


footer .contact-info img {
    width: 20px;
}

footer .contact-info p {
    margin: 5px 0;
}

.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
    padding: 10px 5rem;
    width: 100%;
}

.footer-bottom-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-bottom-section p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(158, 158, 158, 1);
}

.footer-bottom-section .social-icons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-section .social-icons img {
    width: 35px;
    cursor: pointer;
    transition: transform 0.3s;
    padding: 7.5px;
    background-color: rgba(24, 24, 28, 1);
    border-radius: 50%;
}


@media (max-width: 576px) {
    footer {
        padding: 20px 1rem;
    }

    .footer-bottom-section {
        flex-direction: column;
        text-align: center;
        padding: 10px 1rem;
        gap: 10px;
    }

    .footer-bottom-section .container {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-section .social-icons {
        justify-content: center;
    }
}