 /* Zusätzliche Styles für die AGB-Seite */
        .agb-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 80px 5%;
            min-width: 40%;
        }
        
        .agb-header {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .agb-header h1 {
            font-size: 2.5rem;
            color: #3254AF;
            margin-bottom: 20px;
        }
        
        .agb-header p {
            font-size: 1.2rem;
            color: #555;
        }
        
        .agb-content {
            background: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 0 15px rgba(0,0,0,0.05);
        }
        
        .agb-section {
            margin-bottom: 30px;
        }
        
        .agb-section h2 {
            font-size: 1.6rem;
            color: #3254AF;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        
        .agb-section h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin: 25px 0 10px 0;
        }
        
        .agb-section p, .agb-section ul {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .agb-section ul {
            padding-left: 20px;
        }
        
        .agb-section li {
            margin-bottom: 8px;
        }
        
        @media (max-width: 768px) {
            .agb-container {
                padding: 40px 20px;
            }
            
            .agb-content {
                padding: 20px;
            }
            
            .agb-header h1 {
                font-size: 2rem;
            }
        }
        
        @media (prefers-color-scheme: dark) {
            .agb-content {
                background: #161616;
            }
            
            .agb-header p, 
            .agb-section p, 
            .agb-section li {
                color: #f1f1f1;
            }
        }
/* Zusätzliche Styles für die Datenschutzseite */
        .privacy-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 80px 5%;
        }
        
        .privacy-header {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .privacy-header h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .privacy-header p {
            font-size: 1.2rem;
            color: #555;
        }
        
        .privacy-content {
            background: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 0 15px rgba(0,0,0,0.05);
        }
        
        .privacy-section {
            margin-bottom: 30px;
        }
        
        .privacy-section h2 {
            font-size: 1.6rem;
            color: #3254AF;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        
        .privacy-section h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin: 25px 0 10px 0;
        }
        .privacy-section a{
            color: var(--accent-color);
        }
        .privacy-section p, 
        .privacy-section ul,
        .privacy-section table {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .privacy-section ul {
            padding-left: 20px;
        }
        
        .privacy-section li {
            margin-bottom: 8px;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        th, td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        th {
            background-color: #f5f5f5;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .privacy-container {
                padding: 40px 20px;
            }
            
            .privacy-content {
                padding: 20px;
            }
            
            .privacy-header h1 {
                font-size: 2rem;
            }
            
            table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (prefers-color-scheme: dark) {
            .privacy-content {
                background: #161616;
            }
            
            .privacy-header p, 
            .privacy-section p, 
            .privacy-section li {
                color: #f1f1f1;
            }
            
            th {
                background-color: #333;
            }
            
            td {
                border-bottom: 1px solid #444;
            }
        }