/* Footer Base */
.site-footer {
    background: #529857;
    color: #ffffff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

/* Column Titles */
.footer-col h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #e0e0e0;
}

/* Lists */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

/* Links */
.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

/* Bottom Text */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #bbbbbb;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
