
body {
    background-color: #e8e1d7; 
    color: #3a352f;
    padding: 8px 90px;
}
body h1{
    font-size: 3rem;
}


.legal-container {
    max-width: 800px;
    margin: 50px auto;
    background-color: #d6cec3; 
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #b2aa9e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.legal-container h2 {
    color: #3a352f;
    text-align: center;
    border-bottom: 2px solid #a8894a;
    padding-bottom: 10px;
}

.datenschutz-section h3 {
    color: #a8894a;
    margin-top: 25px;
}

.datenschutz-section p, .datenschutz-section li {
    line-height: 1.6;
    color: #444039;
    padding-left: 0 !important; /* Verhindert Störung durch styel.css */
}

/* DAS IST DER WICHTIGE TEIL FÜR DEN LINK */
.btn-container {
    text-align: center;
    margin-top: 40px;
}

.btn-home {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3a352f; /* Dunkler Button */
    color: #e8e1d7 !important; /* Helle Schrift */
    text-decoration: none; /* Keine Unterstreichung */
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-home:hover {
    background-color: #a8894a; /* Gold beim Drüberfahren */
    color: #ffffff !important;
}