.footer-nvk {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 50px 0 20px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-column h5 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.footer-column p,
.footer-column ul li {
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #e63946;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #333333;
    color: #cccccc;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.social-icon:hover {
    background-color: #e63946;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #333333;
    margin-top: 35px;
    font-size: 0.8rem;
    color: #777777;
}