/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    background-color: #d6d7d0;
    color: #2e3c55;
    margin: 0;
    padding: 0;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #2e3c55;
    color: #e0d9ae;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000; /* Ensure it's below the header-right */
}

.header-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

.header-right {
    position: fixed;
    right: 40px;
    top: 30px;
    z-index: 1100;
}

.header-right div, 
.header-right a {
    list-style: none; /* Sicherheitsvorkehrung */
    text-decoration: none; /* Verhindert unterstrichene Links */
    padding: 0;
    margin: 0;
    color: #e0d9ae;
    font-size: 20px; /* Schriftgröße der Links */
    font-weight: 600; /* Fettschrift für die Links */
    color: #e0d9ae; /* Linkfarbe weiß */
    padding: 15px; /* Innenabstand der Links */
}

.header-right a:hover {
    color: #9b8d52; /* Eine Hover-Farbe für Interaktivität */
}



.terms-content {
    padding: 220px 40px 40px 40px; /* Oben angepasstes Padding */
    max-width: 900px;
    margin: 0 auto;
}

.terms-content h2 {
    font-size: 2.5rem;
    color: #9b8d52;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    padding-bottom: 100px;
}

.terms-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

footer {
    background-color: #2e3c55;
    color: #e0d9ae;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
