.kil-footer {
    background-color: #1f1f1f;
    color: #dcdcdc;
    font-family: 'Segoe UI', sans-serif;
    padding: 40px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 300px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column p,
.footer-column a {
    color: #dcdcdc;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #999;
    font-size: 14px;
}

#bottom-apps a {
    color: #dcdcdc;
    margin-left: 15px;
    font-size: 20px;
    transition: color 0.3s ease;
}

#bottom-apps a:hover {
    color: #ffffff;
}

/* Responsive Footer */

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 10px;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    #bottom-apps {
        margin-top: 10px;
    }

    #bottom-apps a {
        margin-left: 10px;
        margin-right: 10px;
    }
}
