 .banner-container {
  position: relative;
  width: 100%;
	 margin-bottom: 20px;
	 margin-top: -14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .banner-image {
  width: 100%;
  height: auto;
  display: block;
		background-image: url('/img/594795453_2.avif');
  min-height: 450px; /* Erhöht für mehr Platz */
  position: relative;
  padding-bottom: 80px; /* Platz für den unteren Block */
 }

 .form-overlay {
  position: absolute;
  top: 42%;
  left: 5%; /* Geändert von right zu left */
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Sicherheitsabstand zum unteren Block */
 }

 .bottom-info-block {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1.5em;
  display: flex;
  justify-content: space-around;
  align-items: center;
 }

 .info-item {
  text-align: left;
  padding: 0 15px;
  flex: 1;
  max-width: 30%;
  display: flex;
  align-items: flex-start;
 }

 .info-item h3 {
  font-size: 1rem;
		padding: 0em;
		font-weight: bold;
  color: #fff;
 }

 .info-item p {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.4;
 }
								
	.check-icon {
  margin-right: 10px;
  color: #6e8efb;
  font-size: 1.2rem;
  margin-top: -6px;
 }

 .form-title {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
		padding-left: 0em;
 }

 .checkbox-group {
  margin-bottom: 20px;
 }

 .checkbox-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
 }

 .checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #e16917;
  border-radius: 4px;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
 }

 .checkbox-item input[type="checkbox"]:checked {
  background-color: #fe7110;
 }

 .checkbox-item input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
 }

 .checkbox-item label {
  color: #555;
  font-size: 1rem;
  cursor: pointer;
 }

 .submit-btn {
  background: linear-gradient(to right, #478ad0, #2067b0);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
 }

 .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 @media (max-width: 768px) {
	 .banner-container {
   box-shadow: none;
  }
		.placeholder-overlay {
		 padding-top: 0.5em;
		}
  .form-overlay {
			top: 2%;
   position: relative;
   left: auto;
   transform: none;
   margin: 20px auto;
			width: 85%;
   max-width: none;
  }
												
	 .banner-container {
		 margin-top: -13px;
		}
  
  .banner-image {
   min-height: auto;
   padding-bottom: 0;
  }
  
  .bottom-info-block {
   position: relative;
   flex-direction: column;
   padding: 15px;
   background: rgba(0, 0, 0, 0.8);
  }
  
  .info-item {
   margin-bottom: 15px;
   width: 100%;
   max-width: 100%;
   padding: 0 10px;
  }
  
  .info-item:last-child {
   margin-bottom: 0;
  }
 }

 @media (max-width: 480px) {
  .form-overlay {
   padding: 20px;
  }
  
  .form-title {
   font-size: 1.3rem;
  }
 }
								
								 /* Container (Block) */
 .block1 {
  position: relative;      /* Ermöglicht absolute Positionierung des Kreises */
  border: 1px solid #ccc; /* Rahmen des Blocks */
  padding: 20px;
		font-size: 16px;
  overflow: visible;      /* Kreis darf über den Block hinausragen */
 }
								
	/* Kreis */
 .kreis3 {
  width: 80px;
  height: 80px;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#52d048), to(#2cb01f));
  border: 5px solid white;
  outline: 5px solid #52d048;
  border-radius: 50%;
  
  /* Zentrierung des Textes */
  display: flex;
  justify-content: center;
  align-items: center;
												
		transform: rotate(10deg);
  
  /* Textstil */
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-align: center;
  line-height: 1.2;
 }

	#main article .checklist {
  list-style-type: none;
  padding: 0;
		margin: 0em;
  width: 100%;
  max-width: 500px;
 }
 .checklist li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
 }
 .checklist li:before {
  content: "✓";
  color: green;
  font-weight: bold;
  margin-right: 10px;
 }