import React, { Component } from 'react';
import PropTypes from "prop-types"

export default class data_protection extends Component {
    render() {
        return (
            <div>
            <h2>An overview of data protection</h2>
            <h3>General</h3>
            <p>The following gives a simple overview of what happens to your personal information when you visit our website. Personal
                information is any data with which you could be personally identified. Detailed information on the subject of data
                protection can be found in our privacy policy found below.</p>
            <h3>Data collection on our website</h3>
            <p>
                <strong>Who is responsible for the data collection on this website?</strong>
            </p>
            <p>The data collected on this website are processed by the website operator. The operator's contact details can be found
                in the website's required legal notice.</p>
            <p>
                <strong>How do we collect your data?</strong>
            </p>
            <p>Some data are collected when you provide it to us. This could, for example, be data you enter on a contact form.</p>
            <p>Other data are collected automatically by our IT systems when you visit the website. These data are primarily technical
                data such as the browser and operating system you are using or when you accessed the page. These data are collected
                automatically as soon as you enter our website.</p>
            <p>
                <strong>What do we use your data for?</strong>
            </p>
            <p>Part of the data is collected to ensure the proper functioning of the website. Other data can be used to analyze how
                visitors use the site.</p>
            <p>
                <strong>What rights do you have regarding your data?</strong>
            </p>
            <p>You always have the right to request information about your stored data, its origin, its recipients, and the purpose
                of its collection at no charge. You also have the right to request that it be corrected, blocked, or deleted. You
                can contact us at any time using the address given in the legal notice if you have further questions about the issue
                of privacy and data protection. You may also, of course, file a complaint with the competent regulatory authorities.</p>
            <h3>Analytics and third-party tools</h3>
            <p>When visiting our website, statistical analyses may be made of your surfing behavior. This happens primarily using cookies
                and analytics. The analysis of your surfing behavior is usually anonymous, i.e. we will not be able to identify you
                from this data. You can object to this analysis or prevent it by not using certain tools. Detailed information can
                be found in the following privacy policy.</p>
            <p>You can object to this analysis. We will inform you below about how to exercise your options in this regard.</p>
            </div>
        );
    }
}