body {
      font-family: Arial, sans-serif;
      color: #333;
      margin: 0;
      padding: 0;
      background-color: #f4f4f9;
    }

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

    header img {
      height: 180px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px;
    }
	  
	p {
	  line-height: 135%;
	}

    h1 {
      color: #ff5c33; /* HauptÃ¼berschrift in #ff5c33 */
    }

    h2 {
      color: #00BDD2;
    }

    .intro {
      text-align: center;
      margin-top: 40px;
    }

    .intro h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .intro p {
      font-size: 1.2rem;
      color: #666;
    }

    .section {
      margin-top: 0px;
    }

    .section h2 {
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

    .list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .list-item {
      flex: 1 1 calc(20% - 20px);
      background-color: #fff;
      padding: 20px 40px 20px 40px;
      border-radius: 8px;
      text-align: left;
    }

	  .list-item-bottom {
	  	padding-bottom:8px;
	  }
	  
    .list-item h3, .list-item>div {
      	font-size: 1.2rem;
      	color: #ff5c33;
		text-align:center;
    }

    .cta {
      text-align: center;
      margin-top: 40px;
	  margin-bottom:40px;
      padding-bottom:40px;
    }

    .cta a {
      background-color: red;
      color: #fff;
      padding: 15px 30px;
      font-size: 1.2rem;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .cta a:hover {
      background-color: #cc0000;
    }

    footer {
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 20px;
    }

	@media only screen and (max-width: 768px) {
		h1, h2, .intro h1 {
			font-size:24px;
		}
		
		.list-item {
			flex: 1 1 calc(30% - 20px);
			padding: 20px;
		}
		
		.list-item>p {
			margin-top:0px;
			margin-bottom:0px;
		}
		
		.list-item h3, .list-item>div {
			font-size: 18px;
    		margin-top: 4px;
		}
	}