/* Menu toggle (hidden on desktop) */
        .menu-toggle {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: #fff;
            background: transparent;
            border: none;
            line-height: 1;
            z-index: 30;
        }

        /* overlay */
        #overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.45);
            z-index: 20;
        }

        /* Mobile nav */
        @media (max-width: 768px) {
            header {
                justify-content: flex-start;
                gap: 15px;
            }

            .menu-toggle {
                display: block;
                position: absolute;
                left: 16px;
                top: 12px;
            }

            nav ul {
                position: fixed;
                top: 0;
                left: -280px;
                width: 280px;
                height: 100vh;
                background: #3A7D44;
                padding-top: 80px;
                display: flex !important;
                flex-direction: column;
                gap: 14px;
                padding-left: 24px;
                transition: left 0.28s ease;
                z-index: 25;
                overflow-y: auto;
            }

            nav ul li a {
                color: #fff;
                text-decoration: none;
                font-size: 18px;
                display: block;
                padding: 10px 0;
            }

            nav ul.active {
                left: 0;
            }

            body.menu-open {
                overflow: hidden;
            }

            body.menu-open #overlay {
                display: block;
            }
        }

        /* ====== Footer Styles ====== */
        footer {
            background: #2D3748; /* Deep teal */
            color: #fff;
            text-align: center;
            padding: 40px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo img {
            width: 120px;
            margin-bottom: 20px;
        }

        .footer-socials a {
            margin: 0 8px;
            display: inline-block;
        }

        .footer-socials img {
            width: 24px;
            height: 24px;
        }

        .footer-menu {
            list-style: none;
            margin: 20px 0;
            padding: 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-menu li a {
            color: #fff;
            text-decoration: none;
        }

        .footer-contact p {
            margin: 5px 0;
        }

        .footer-copy {
            margin-top: 15px;
            font-size: 14px;
            color: #A3B18A; /* muted text */
        }