        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(to bottom, #f9f9f9, #e6f2ff);
            padding: 20px;
        }
        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        header {
            background: #2c3e50;
            color: white;
            padding: 20px;
            text-align: center;
        }
        header h1 {
            margin-bottom: 10px;
            font-size: 28px;
        }
        .logo {
            font-weight: bold;
            font-size: 24px;
            color: #3498db;
            margin-bottom: 5px;
        }
        .content {
            padding: 30px;
        }
        .preview-section {
            text-align: center;
            margin-bottom: 30px;
        }
        .preview-image {
            max-width: 100%;
            border: 1px solid #ddd;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin: 20px 0;
            border-radius: 5px;
        }
        .download-section {
            text-align: center;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
            margin: 20px 0;
        }
        .download-btn {
            display: inline-block;
            background: #2ecc71;
            color: white;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            margin: 15px 0;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .download-btn:hover {
            background: #27ae60;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 30px 0;
        }
        .feature {
            flex-basis: 48%;
            background: #f8f9fa;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 8px;
            border-left: 4px solid #3498db;
        }
        .feature h3 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .legal-info {
            background: #ffeaa7;
            padding: 20px;
            border-radius: 8px;
            margin: 5px 0;
            border-left: 4px solid #fdcb6e;
        }
        .legal-info ul {
            padding: 20px 50px;
        }

        footer {
            text-align: center;
            padding: 20px;
            background: #2c3e50;
            color: white;
        }
        
        /* Neue Styles für zusätzliche Downloads */
        .additional-downloads {
            margin: 40px 0;
        }
        .additional-downloads h2 {
            text-align: center;
            margin-bottom: 25px;
            color: #2c3e50;
        }
        .download-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        .download-item {
            flex: 1 1 calc(33.333% - 20px);
            min-width: 200px;
            background: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        .download-item:hover {
            transform: translateY(-5px);
        }
        .download-preview {
            height: 150px;
            overflow: hidden;
            border-bottom: 1px solid #ddd;
        }
        .download-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .download-info {
            padding: 15px;
            text-align: center;
        }
        .download-info h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        .download-info p {
            font-size: 14px;
            margin-bottom: 15px;
            color: #666;
        }
        .small-download-btn {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 8px 15px;
            font-size: 14px;
            text-decoration: none;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .small-download-btn:hover {
            background: #2980b9;
        }
        
        /* Social Sharing Styles */
        .social-sharing {
            margin: 30px 0;
            text-align: center;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
        }
        .social-sharing h3 {
            margin-bottom: 15px;
            color: #2c3e50;
        }
        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .share-btn {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .share-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .share-btn i {
            margin-right: 8px;
            font-size: 18px;
        }
        .facebook {
            background: #3b5998;
        }
        .whatsapp {
            background: #25D366;
        }
        .email {
            background: #EA4335;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 14px;
            color: #666;
        }
        .breadcrumb a {
            color: #3498db;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .feature {
                flex-basis: 100%;
            }
            .download-item {
                flex: 1 1 100%;
            }
            .share-buttons {
                flex-direction: column;
                align-items: center;
            }
            .share-btn {
                width: 200px;
                justify-content: center;
            }
        }