footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    display: inline-block;
    text-decoration: none;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--light-gray);
}

.footer-item i {
    margin-right: 10px;
    color: var(--secondary);
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--light-gray);
    text-decoration: none;
    margin-left: 15px;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}