/* Footer Styles */
        footer {
            background-color: #004225;
            color: #fff;
            padding: 40px 20px;
            text-align: center;
        }

        .footing {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-links, .footer-contacts {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: center;
        }

        .footer-links li, .footer-contacts li {
            margin-bottom: 10px;
        }

        .footer-links a, .footer-contacts a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover, .footer-contacts a:hover {
            color: #007bff;
        }

        .footer-contacts li {
            font-size: 1rem;
        }
                @media (min-width: 768px) {
            .footing {
                flex-direction: row;
                text-align: left;
            }
            .footer-links, .footer-contacts {
                text-align: left;
            }
        }