html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #FFF;

}

h1, h2{
    line-height: 1.3;
}

p{
    line-height: 1.3;
}

#wrapper{
   padding: 0 10px; 
}

header,main{
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
}

main{
    margin-bottom: 40px;
    margin-top: 40px;
}

.image{
    width: 100%;
    height: auto;
}

#header{
    display: flex;
    margin-top: 40px;
}

#header #header-inner{
    flex: 0 0 70%;
}

#header #header-logo{
    flex: 0 0 30%;
}

#header h1{
    font-size: 24px;
    color: #43259d;
    font-weight: 800;
    margin-bottom: 20px;
}

#header-inner #header-content{
    display: flex;
    margin-top: 20px;
}

#header-content #header-text{
    text-align: center;
    padding-right: 20px;
}

#header-content #header-text p{
    margin-bottom: 10px;
    color: #43259d;
    font-weight: 600;
    font-size: 18px;
}

#header-inner #header-content #header-image{
    flex: 0 0 55%;
}

#header-inner #header-content #header-headline{
    flex: 0 0 45%;
    font-size: 36px;
    text-align: center;
    font-weight: 600;
    padding: 0 30px 0 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 600px) {
  #header-inner #header-content #header-headline{
    font-size: 26px;
  }
}

.checkbox{
    display: flex;
}

#main article{
    margin-bottom: 20px;
}

#main.datenschutz h1{
    font-size: 28px;
    margin-bottom: 15px;
}

form {
    background-color: #dbdbdb;
    padding: 20px 25px;
    margin: auto;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

label {
    display: block;
    font-weight: bold;
    margin-top: 12px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #bbb;
    border-radius: 3px;
    margin-top: 5px;
    box-sizing: border-box;
}

.row {
    display: flex;
    gap: 10px;
}

.row .half {
    flex: 1;
}

.checkbox {
    margin-top: 15px;
}

.checkbox input {
    margin-right: 5px;
}

.datenschutz-text{
    color: #43259d;
    text-decoration: none;
}

.datenschutz {
    font-size: 0.85em;
    color: #333;
    margin-top: 10px;
    line-height: 1.4;
}

.datenschutz a {
    color: #004a99;
    text-decoration: underline;
}

.pflicht {
    font-size: 0.85em;
    color: #555;
    margin-top: 10px;
}

button {
    margin-top: 15px;
    background-color: #808ca4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 1em;
    cursor: pointer;
}

button:hover {
    background-color: #6c7a99;
}

#footer{
    background: #dbdbdb;
    padding: 20px;
    text-align: center;
    color: #43259d;
}

#footer ul{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#footer ul li{
    margin: 0 10px;
}

#footer ul li a{
    text-decoration: none;
    color: #43259d;
}