    /* Allgemeine Styles */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
    }
    body {
      line-height: 1.6;
      color: #333;
    }
    a {
      text-decoration: none;
      color: inherit;
    }

	/* Header mit Farbverlauf */
	.cssHeader {
		display: flex;
		justify-content: space-between;
		align-items: start;
		padding: 20px 40px;
		background: linear-gradient(to right, #088A08, #0F9E0F);
		color: #fff;
	}

	.logo {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.logo-title {
		font-size: 2rem;
		font-weight: bold;
		color: #fff;
		line-height: 0.8;
	}
	.logo-slogan {
		font-size: 0.9rem;
		font-weight: bold;
		font-style: italic;
		color: #fff;
		/*margin-top: 5px;*/
		text-align: start;
	}
	
	nav {
		display: flex;
		align-items: start;
	}
	nav a {
		margin-left: 20px;
		font-weight: 600;
		color: #fff;
		transition: color 0.3s;
	}
	nav a:hover {
		color: #fbbf24;
	}
	._cssMenuInFooter{ 
		display:none;
	}
	._cssToolBarFooter{
		padding:5px 5px;
		margin-left:0px;
		color:#fff;
		font-size:0.8rem;			
	}

    /* Sprachauswahl */
    .language-selector_ {
      margin-left: 20px;
    }
    .language-selector select {
      padding: 5px 10px;
      border-radius: 5px;
      border: none;
      font-weight: 600;
      cursor: pointer;
    }

    /* Hero */
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px;
      background: #00760b;
      color: #fff;
	  
	  /* Hintergrund */
	  background-image: url('website/images/headerBackgr.png'); 
	  background-size: cover;   
	  background-position: center; 
	  background-repeat: no-repeat;
	  background-size: 100%;
    }
    .hero h2 {
      font-size: 2.5rem;
      margin: 0px 0px 20px 0px;
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin-bottom: 30px;
    }
    .hero button {
      background: #fbbf24;
      color: #1f2937;
      font-weight: 600;
      padding: 15px 30px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .hero button:hover {
      background: #f59e0b;
    }

    /* Features */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      padding: 60px 40px;
      background: #f9fafb;
      text-align: center;
    }

	.feature-card {
		background: #fff;
		padding: 30px;
		border-radius: 15px;
		box-shadow: 0 10px 25px rgba(0,0,0,0.1);
		transition: transform 0.3s;
	}
	.feature-card:hover {
		transform: translateY(-10px);
	}
	.feature-card h3 {
		margin-bottom: 15px;
		color: #088A08;
	}
	.feature-card i {
		font-size: 2.5rem;
		color: #008000;
	}
	.feature-card p {
		color: #555;
	}	

    /* CTA */
    .cta {
      background: #088A08;
      color: #fff;
      text-align: center;
      padding: 20px 10px;
    }
    .cta h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .cta button {
      background: #fbbf24;
      color: #1f2937;
      font-weight: 600;
      padding: 15px 30px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .cta button:hover {
      background: #f59e0b;
    }

	._cssContent{
		min-height:300px;
	}

    /* Footer */
    footer {
      background: #1f2937;
      color: #fff;
      text-align: center;
      padding: 10px 20px  30px 20px; 
    }
    .footer-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
      margin-top: 15px;
    }
    .footer-info p {
      margin: 5px 0;
	  text-align:left;
    }
	.rtl .footer-info p {
	  margin: 5px 0;
	  text-align: right;
	}
    .footer-info h4 {
		text-align:left;
		text-decoration:underline;
    }
	.rtl .footer-info h4 {
		text-align:right;
		text-decoration:underline;
	}

	
	._cssFooterInfo{
		display: inline-flex;
		width:20px;
	}

    /* Overlay für App-Links */
    #download-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    #download-overlay .overlay-content {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      text-align: center;
    }
    #download-overlay button {
      margin: 10px;
      padding: 15px 25px;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      background: #088A08;
      color: #fff;
    }
    #download-overlay button:hover {
      background: #0F9E0F;
    }

    /* Responsive */
    @media (max-width: 768px) {
		.hero h2 {
			font-size: 2rem;
			line-height: 1.2;
			margin: 0px 0px 20px 0px;
		}
		.hero p {
			font-size: 1rem;
		}
		nav {
			flex-direction: column;
			/*gap: 10px;*/
		}
		._cssMenuInFooter{
			display:block;
			text-decoration:underline;
		}
		._cssToolBarFooter{
			padding:5px 0px;
			margin-left:0px;
			color:#fff;
			font-size:0.8rem;			
		}
		.language-selector_ {
			margin-left: 20px;
		}
    }

	  /* Startzustand: unten versteckt */
	  #promo-box {
		position: fixed;
		bottom: -200px; /* außerhalb des Bildschirms */
		left: 0;
		width: 100%;
		background: #088A08;
		color: white;
		text-align: center;
		padding: 20px;
		font-size: 1.2rem;
		transition: bottom 1s ease; /* Animationseffekt */
		z-index: 9999;
	  }

	  /* Aktiver Zustand: sichtbar */
	  #promo-box.show {
		bottom: 0; /* fährt nach oben ins Bild */
	  }
	  
/*Kontaktformular*/
    ._cssDivContactContainer {
      font-family: Arial, sans-serif;
      background: #f2f2f2;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
	}
	._cssContactContainer { 
		border: 0px solid red;
		background: #fff;
		margin: 15px;
		padding: 10px 20px 30px 20px;
		border-radius: 12px;
		box-shadow: 0 5px 20px rgba(0,0,0,0.1);
		max-width: 600px;
		width: 100%;
	}

    ._cssContactContainer h2 {
      margin-bottom: 20px;
      font-size: 24px;
      color: #333;
      text-align: center;
    }

    ._cssFormGroup {
      margin-bottom: 15px;
    }
    ._cssFormGroup label {
      display: block;
      margin-bottom: 6px;
      font-weight: bold;
      font-size: 14px;
      color: #555;
    }
    ._cssFormGroup input, ._cssFormGroup textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
      box-sizing: border-box;
      transition: border 0.3s ease;
    }
    ._cssFormGroup input:focus, ._cssFormGroup textarea:focus {
      border-color: #28a745;
      outline: none;
    }
    ._cssFormGroup textarea {
      min-height: 120px;
      resize: vertical;
    }
    ._cssSubBtnForm {
      width: 100%;
      padding: 14px;
      background: #28a745;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    ._cssSubBtnForm:hover {
      background: #218838;
    }
    ._cssNote {
      font-size: 12px;
      color: #777;
      margin-top: 10px;
      text-align: center;
    }