
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: #09090b; 
}


body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400; 
    background-image: url('img/logo_bg.png');
    background-size: cover;        
    background-attachment: fixed; 
    background-position: center;   
    background-repeat: no-repeat; 
    color: #e4e4e7; 
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}


header {
    background-color: rgba(9, 9, 11, 0.8);
    padding: 10px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav-logo{
  max-width: 120px;
}

.head {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.head:hover {
    color: #ffffff;
}


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

.datenschutz-container {
    margin: 140px 24px 60px 24px; 
    max-width: 760px; 
    width: 100%;
    padding-bottom: 120px; 
}

h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-top: 0;
    margin-bottom: 30px;
    color: #ffffff; 
}

h2 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-top: 45px;
    margin-bottom: 16px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

p, li {
    font-size: 15px;
    line-height: 1.7; 
    color: #d4d4d8;
}

ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

li {
    margin-bottom: 10px;
}

a:not(.head) {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 3px;
    font-weight: 500;
    transition: text-decoration-color 0.2s ease;
}

a:not(.head):hover {
    text-decoration-color: rgba(255, 255, 255, 0.9);
}

strong {
    color: #ffffff;
    font-weight: 600;
}


.site-footer {
    background-color: rgba(9, 9, 11, 0.9);
    color: #71717a;
    text-align: center;
    padding: 24px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer p {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.3px;
}