footer {
    background: var(--secondary-background);
}

footer .footer-container {
    padding: 0 20px;
}

footer .footer-content {
    padding: 20px 0;
}

footer a {
    color: black;
}

footer a:hover {
    color: var(--green-dark);
}

footer .menus-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px 0 20px 0;
}

footer h3 {
    margin-bottom: 15px;
    font-size: 14px;
    color: black;
}

footer .footer-menu nav,
footer .footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .footer-menu nav a,
footer .footer-menu ul p {
    font-size: 13px;
    font-weight: 450;
    line-height: 1;
}

footer .bottom-container {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .bottom-container p,
footer .bottom-container p a {
    font-size: 12px;
    display: flex;
    gap: 5px;
}

footer .bottom-container p a {
    color: black;
    text-decoration: underline;
}


    /* Pad Version */
    @media screen and (min-width: 768px) {
        footer .footer-container {
            padding: 0 40px;
        }

        footer .footer-content {
            padding: 30px 0 ;
        }

        footer .menus-container {
            padding: 40px 0 30px 0;
            gap: 80px;
        }

        footer h3 {
            font-size: 15px;
        }

        footer .footer-menu nav a,
        footer .footer-menu ul p {
            font-size: 14px;
        }

        footer .bottom-container {
            padding-top: 30px;
            flex-direction: row;
            justify-content: space-between;
        }

        footer .bottom-container p,
        footer .bottom-container p a {
            font-size: 13px;
        }
    }


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            footer .footer-container {
                padding: 0 60px;
            }

            footer .footer-content {
                padding: 40px 0;
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
            }

            footer .menus-container {
                width: max-content;
                padding: 0;
                gap: 120px;
            }

            footer h3 {
                margin-bottom: 20px;
                font-size: 16px;
            }

            footer .footer-menu nav,
            footer .footer-menu ul {
                gap: 20px;
            }

            footer .footer-menu nav a,
            footer .footer-menu ul p {
                font-size: 15px;
            }

            footer .bottom-container {
                width: 100%;
                padding-top: 50px;
            }

            footer .bottom-container p,
            footer .bottom-container p a {
                font-size: 14px;
            }
        }