/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-info {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-info p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-info {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-nav {
        width: 100%;
        justify-content: space-around;
    }
}