/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}
  
.footer-logo img {
    height: 150px;
    margin-bottom: 50px;
}

.footer-links h5 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
  
.footer-links h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
}
  
.footer-links ul {
    list-style: none;
    padding: 0;
}
  
.footer-links li {
    margin-bottom: 10px;
}
  
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}
  
.footer-links a:hover {
    color: white;
    padding-left: 5px;
}
  
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}
  
.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}
  
.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}