/* --- MEGA FOOTER STYLES --- */
    .mega-footer {
        background-color: #050505;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 80px 0 30px;
        font-size: 0.85rem;
    }

    .footer-heading {
        color: #fff;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 25px;
        font-size: 0.95rem;
        border-bottom: 2px solid var(--accent-green);
        display: inline-block;
        padding-bottom: 5px;
    }

    .footer-links-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links-list li {
        margin-bottom: 10px;
    }

    .footer-link {
        color: #888;
        text-decoration: none;
        transition: 0.3s;
        display: block;
    }

    .footer-link:hover {
        color: var(--accent-green);
        transform: translateX(5px);
    }

    /* SEO Block specific styling for density */
    .seo-keyword-block a {
        color: #555;
        font-size: 0.8rem;
        margin-right: 10px;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 8px;
    }
    .seo-keyword-block a:hover { color: #fff; }

    .social-icon-btn {
        width: 40px; height: 40px;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 50%;
        display: inline-flex;
        align-items: center; justify-content: center;
        color: #fff;
        margin-right: 10px;
        transition: 0.3s;
        text-decoration: none;
    }
    .social-icon-btn:hover {
        background: var(--accent-green);
        color: #000;
        border-color: var(--accent-green);
    }