/* Footer Styles */
footer {
    background: #1A202C;
    color: white;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
    text-decoration: none;
}

.footer-brand:hover {
    color: #2D5F3E;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #2D5F3E;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    .social-links {
        text-align: center;
    }
}