.logoSection .kantl {
    height: 90px;
}

.logoSection .ltv {
    height: 28px;
}

.logoSection .vvhl {
    height: 60px;
}

.logoSection .vl {
    height: 35px;
}

.logoSection img {
    margin-left: 1rem;
    cursor: pointer;
}

.logoSection {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-left: 3rem;
    width: 42%;
    justify-content: space-around;
}

.box {
    display: flex;
    align-items: center;
    background-color: #E9E6E2;
    position: relative;
    padding-top: 1rem;
    padding-bottom:1rem;
}

.box::after {
    content: "";
    position: absolute;
    left: 0rem;
    right: 1.5rem;
    bottom: -8.2px;
    height: 7.8px;
    background: #5f5f5f;
    clip-path: polygon(0% 0%, 100% 0%, 99% 100%, 1% 100%);
    z-index: -1;
    width: 100%;
}

footer .text {
    margin-right: 3rem;
    width: 40%;
    margin-left: auto;
    border-left: solid 2px #0A1A2F;
    padding-left: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: 0.4px;
}

.text strong {
    font-weight: bold;
}

.text a {
    color: black;
    
}

footer {
    margin-top: 10rem;
    margin-bottom: 5rem;
    margin-left: 2rem;
    margin-right: 2rem;
}

footer .links {
    font-size: 15px;
    letter-spacing: 0.8px;
    display: flex; 
    justify-content: space-between;
    margin-top: 1.5rem;
}

footer .links a {
    margin-right: 3rem;
}

footer .links a:last-child {
    margin-right: 0rem;
}
footer .link, footer p a {
    position: relative;
    display: inline-block;
    color: black;
    text-decoration: none;
}

/* Animated underline */
footer .link::before , footer p a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;          /* adjust if needed */
    width: 100%;
    height: 1px;
    background: currentColor;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

/* Hover animation */
footer .link:hover::before, footer p a:hover:before {
    transform: scaleX(1);
}
