    /* 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;
		text-decoration: underline;		
	}

    /* 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;
    }
	
._cssConditionTitle1{
    font-size: 20px; 
    font-weight: bold;
    margin-bottom: 20px;
	text-decoration:underline;
	text-align: center;
}
._cssConditionTitle2{
    font-size: 18px; 
    font-weight: bold;
    line-height: 30px;
}
._cssConditionTitle3{
    font-size: 18px; 
    font-weight: bold;
}
._cssConditionTitle4{
    font-size: 14px; 
    font-weight: bold;
}
._cssConditionContent{
    font-size: 14px; 
    line-height: 25px;
    margin-bottom: 15px;
}
._cssContentBlock{
	padding:10px;
}


/*##################*/
/* ==============================
Abschnitt: Wie funktioniert DabaDaba
================================= */
.how-it-works {
text-align: center;
padding: 60px 20px;
background-color: #f9f9f9;
}

.how-it-works h2 {
font-size: 1.8em;
color: #0a8a28;
margin-bottom: 40px;
}

.how-it-works .steps {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
}

.how-it-works .step {
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
width: 280px;
padding: 25px 20px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works .step:hover {
transform: translateY(-5px);
box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.how-it-works .step i {
font-size: 2em;
color: #0a8a28;
margin-bottom: 15px;
}

.how-it-works .step h4 {
color: #333;
margin-bottom: 10px;
}

/* ==============================
Abschnitt: Für wen ist DabaDaba
================================= */
._cssSectionTitle{
	text-align: center;
	font-size: 1.8em;
	color: #0a8a28;	
}
.for-whom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 60px 40px;
  background: #f9fafb;
  text-align: center;
}

.for-whom h2 {
font-size: 1.8em;
color: #0a8a28;
margin-bottom: 35px;
}

.for-whom .audiences {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
}

.for-whom .audiences div {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 180px;
	background: #fff;
	border-radius: 10px;
	padding: 20px 10px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
	transition: background 0.3s ease, transform 0.3s ease;
	
}

.for-whom .audiences div:hover {
	background: #e6f9eb;
	transform: translateY(-10px);
}

.for-whom i {
	font-size: 1.8em;
	color: #0a8a28;
	margin-bottom: 10px;
}

/* ==============================
Abschnitt: Vorteile
================================= */
.advantages {
background-color: #f2fff5;
padding: 60px 20px;
text-align: center;
}

.advantages h2 {
color: #0a8a28;
font-size: 1.8em;
margin-bottom: 30px;
}

.advantages ul {
list-style: none;
padding: 0;
max-width: 600px;
margin: 0 auto;
text-align: left;
}

.advantages li {
font-size: 1.05em;
margin-bottom: 10px;
padding-left: 25px;
position: relative;
}

.advantages li::before {
content: "✔";
position: absolute;
left: 0;
color: #0a8a28;
}

/* ==============================
Abschnitt: Download CTA
================================= */
.cta-download {
text-align: center;
padding: 80px 20px;
background: linear-gradient(135deg, #0a8a28 0%, #13b143 100%);
color: #fff;
}

.cta-download h2 {
font-size: 2em;
margin-bottom: 15px;
}

.cta-download p {
font-size: 1.1em;
margin-bottom: 25px;
}

.store-buttons {
display: flex;
justify-content: center;
gap: 20px;
}

.store-buttons img {
transition: transform 0.3s ease;
}

.store-buttons img:hover {
transform: scale(1.05);
}

/* ==============================
Responsive Design
================================= */
@media (max-width: 768px) {
.how-it-works .steps,
.for-whom .audiences {
flex-direction: column;
align-items: center;
}

.how-it-works .step,
.for-whom .audiences div {
width: 90%;
}

.advantages ul {
text-align: left;
}

.cta-download {
padding: 60px 15px;
}
}

/*##################*/
