/* Basis-Styles für Layout-Elemente (aus default.php ausgelagert) */
/*
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 
    background-color: #f8f9fa; 
    margin: 0; 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
}

main { 
    flex: 1 0 auto; 
}

!* Footer *!
footer { 
    background-color: #fff; 
    padding: 40px 0; 
    margin-top: 40px; 
    border-top: 1px solid #eee; 
}

footer h2 { 
    font-size: 1.2rem; 
    margin-bottom: 1rem; 
    color: #333; 
}

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

footer ul li { 
    margin-bottom: 0.5rem; 
}

footer a { 
    color: #555; 
    text-decoration: none; 
}

footer a:hover { 
    color: #000; 
}

!* Helper für Buttons im Footer (falls nicht in btn.css) *!
.btn-lgrey {
    background-color: #e2e6ea;
    color: #333;
    border: none;
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-weight: 600;
    line-height: 1.5;
}

.btn-lgrey:hover {
    background-color: #dbe0e5;
    color: #000;
}*/

/* Page Content Styling (AGB, Privacy etc.) */
.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
