html,
body {
  height: 100%;
}

body {
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
}

.legal-body .navbar {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.legal-body .nav-links li a,
.legal-body .burger {
    color: #1b1b1b;
}

main.legal-page {
    padding: 6rem 0;
    flex: 1;
}

.impressum-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    justify-items: stretch;
}

.impressum-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.impressum-card h2 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.impressum-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}