
        /* Spacer to push footer down */
        .content-spacer {
            flex: 1;
        }

        /* ENHANCED FOOTER */
        .site-footer {
            background: linear-gradient(135deg, #00594f 0%, #004940 100%);
            color: #fff;
            padding: 70px 0 0;
            position: relative;
            overflow: hidden;
        }

        /* Decorative elements */
        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(2, 171, 134, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .site-footer::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(2, 171, 134, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Container */
        .site-footer .container {
            width: min(1200px, 90%);
            margin: auto;
            position: relative;
            z-index: 1;
        }

        /* Grid Layout */
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        /* Footer About */
        .footer-about {
            padding-left: 20px;
        }

        .footer-about img.footer-logo {
            width: 160px;
            height: auto;
            margin-bottom: 20px;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
            transition: transform 0.3s ease;
        }

        .footer-about img.footer-logo:hover {
            transform: scale(1.05);
        }

        .footer-about p {
            color: #e7f7f4;
            line-height: 1.9;
            font-size: 15px;
            opacity: 0.95;
        }

        /* Columns */
        .footer-col h3{
            font-size: 20px;
            margin-bottom: 24px;
            color: #02ab86;
            font-weight: 700;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #02ab86, transparent);
            border-radius: 2px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
            transition: transform 0.2s ease;
        }

        .footer-col ul li:hover {
            transform: translateX(-5px);
        }

        .footer-col ul li a {
            color: #d9f4ef;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }
        .footer-col p a {
            color: #d9f4ef !important;
            margin-bottom: 12px !important;
        }

        .footer-col ul li a::before {
            content: '';
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: #02ab86;
            transition: width 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: #02ab86;
        }

        .footer-col ul li a:hover::before {
            width: 8px;
        }

        /* Contact */
        .contact-item {
            margin: 14px 0;
            font-size: 15px;
            color: #e7f7f4;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .contact-item i {
            color: #02ab86;
            font-size: 18px;
            width: 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            color: white;
            transform: translateX(-3px);
        }

        .contact-item:hover i {
            color: #fff;
            transform: scale(1.1);
        }

        /* Social Icons */
        .footer-social {
            margin-top: 25px;
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            font-size: 18px;
            color: #02ab86;
            background: rgba(2, 171, 134, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .footer-social a:hover {
            color: white;
            background: #02ab86;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(2, 171, 134, 0.3);
        }

        /* Footer Bottom */
        .footer-bottom {
            text-align: center;
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }

        .footer-bottom p {
            font-size: 14px;
            opacity: 0.85;
            color: #e7f7f4;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .footer-about {
                grid-column: 1 / -1;
                padding-left: 0;
                text-align: center;
            }

            .footer-about img.footer-logo {
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 600px) {
            .site-footer {
                padding: 50px 0 0;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 35px;
            }

            .footer-col h3::after {
                right: 50%;
                transform: translateX(50%);
            }

            .footer-col ul li:hover {
                transform: none;
            }

            .footer-col ul li a::before {
                display: none;
            }

            .contact-item {
                justify-content: center;
            }

            .footer-social {
                justify-content: center;
            }
        }
        