.information-wrapper {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .information-wrapper::before {
        content: " ";
        position: absolute;
        top: 50%;
        left: 35%;
        width: 85%;
        height: 120%;
        background-color: var(--font-color);
        z-index: -1;
        display: block;
        transform: translate(-50%, -50%) skewY(-5deg) rotate(5deg);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: box-shadow 0.3s ease;
    }
}

.partnership-list {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
}

.information-wrapper .information-list {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
}

.footer-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.footer-link:hover {
    text-decoration: underline;
    text-decoration-color: white;
}
