﻿/* Footer Links Styling */
.footer-links {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Make footer text dark for light backgrounds */
.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222; /* Dark text instead of white */
}

.footer-nav li {
    margin-bottom: 10px;
    color: rgba(0,0,0,0.7); /* Dark gray text */
    font-size: 14px;
}

.footer-nav a {
    color: rgba(0,0,0,0.8); /* Dark text */
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

    .footer-nav a:hover {
        color: #48af4b; /* Your brand green color */
    }