:root {
    /* Colors */
    --background-light: #F2F2F7;
    --nav-background: rgba(245, 245, 247, .8);
    --nav-color: rgba(0, 0, 0, .8);
    --nav-hover-color: #000000;
    --button-color: #0071e3;
    --button-hover-color: #0077ED;
    
    --linkt-color: #06c;
    --text-color: #06c;

    --feature-background-color: #0071e3;

    --text-secondary: #86868B;
    --border-color: rgba(0, 0, 0, 0.15);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --button-shadow: rgba(0, 113, 227, 0.3);
    --card-background: #ffffff;
    --text-primary: #1d1d1f;
    --footer-background: #f5f5f7;
    --footer-textColor: #515154;
    --footer-textColor-hover: #1d1d1f;

    /* Font Sizes */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-base: 16px;
    --font-lg: 20px;
    --font-xl: 22px;
    --font-2xl: 24px;

    /* Line Heights */
    --line-height-large: 170%;

    /* Andere */
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    /* Font-Family Variablen */
    --font-family-heading: "SF Pro Display", -apple-system, BlinkMacSystemFont, 
        "Helvetica Neue", Arial, sans-serif;
    --font-family-body: "SF Pro Text", -apple-system, BlinkMacSystemFont, 
        "Helvetica Neue", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-body);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--background-light);
}

/* Main Content */
.main-content {
    min-height: 100vh;
    padding-top: 0; /* Direkt unter der secondary navbar */
}

/* Hero Section */
.hero-section {
    padding: 80px 20px 80px;
    text-align: center;
    background: var(--background-light);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 40px;
}

.hero-logo-img {
    width: 80px;
    height: 80px;
}

.hero-title {
    font-family: var(--font-family-heading);
    font-size: 56px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.4;
}

/* Legal Container */
.legal-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Legal Sections */
.legal-section {
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.legal-section:last-child {
    border-bottom: none;
}

/* Section Icons */
.section-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-icon i {
    font-size: 32px;
    color: var(--button-color);
}

.os-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.os-badge {
    background: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.license-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.9;
}

.license-icon:hover {
    transform: scale(1.15);
    opacity: 1;
    filter: brightness(1.1);
}

.agb-icon {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.9;
}

.agb-icon:hover {
    transform: scale(1.15);
    opacity: 1;
    filter: brightness(1.1);
}



.ip-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ip-icons i {
    font-size: 24px;
}

.trademark {
    font-size: 18px;
    font-weight: bold;
    color: var(--button-color);
}

.docs-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.docs-icons i:first-child {
    margin-left: 4px;
}

/* Section Titles */
.section-title {
    font-family: var(--font-family-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

/* Section Descriptions */
.section-description {
    font-size: var(--font-base);
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 24px;
    opacity: 0.8;
}

/* Section Links */
.section-link {
    color: var(--button-color);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-link:hover {
    color: var(--button-hover-color);
    text-decoration: none;
}

.section-link i {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .legal-container {
        padding: 40px 15px;
    }
    
    .legal-section {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 15px 60px;
    }
    
    .hero-logo-img {
        width: 60px;
        height: 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .legal-section {
        padding: 24px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
}