* {
  margin: 0;
  padding: 0;
  box-sizing     : border-box;
}

body {
    background: #ffffff;
	 line-height: 1.7;
  color: #2c3e50;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;

}

.hauptkopf  
  {
   background: #fff; 
	  box-shadow: 0 2px 8px rgba(0,0,0,0.08); 
	  position: sticky; 
	   top: 0; 
	    z-index: 1000; 
	  padding     :1.2rem 0; 

}

.navwrapper {
  max-width: 1280px;
    margin:   0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
   align-items: center;
}

.brandbereich .firmenlogo
	{
	height: 48px;
       display: block;
}

.hauptnavi  {
    display: flex;
  gap: 2.5rem; 
	
}

.hauptnavi a {
   text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
  font-size: 1.05rem;
    transition: color 0.25s;
}

.hauptnavi a:hover  {
   color: #3498db;
}

.burger-icon {
	    display: none;
   flex-direction :  column;
    cursor: pointer;
    gap: 5px;

}

.burger-icon span {
   width:28px;
   height: 3px;
    background: #2c3e50;
	transition: all 0.3s;
}

.burger-icon.aktiv span:nth-child(1) 
 {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-icon.aktiv span:nth-child(2) {
	opacity: 0;
} 

.burger-icon.aktiv span:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -7px);

}

.hero-bereich {
   max-width: 1280px;
  margin: 0 auto;
   padding: 5rem 2rem;
    display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
    align-items: center;
}

.hero-inhalt h1 
 {
   font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
	 color: #1a1a1a;
   font-weight: 700; 
	
}

.hero-inhalt p {

  font-size: 1.25rem;
	 color: #555;
    margin-bottom   : 2.5rem;
  line-height: 1.6;
}

.hero-aktionen {
   display: flex;
   gap: 1.5rem;
}

.primaer-btn {
    background:    #3498db;
   color: white;
    padding: 1rem 2.5rem;
   text-decoration: none;
	border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
   transition: all 0.3s;
  display: inline-block;

}

.primaer-btn:hover {
		 background   :        #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52,152,219,0.3);
}

.hero-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.leistungsbereich {
    background: #f8f9fa;
  padding: 5rem 2rem; 

}

.container-breit {
  max-width: 1280px; 
	    margin: 0 auto;
}

.leistungsbereich h2

{
    text-align: center; 
   font-size: 2.5rem; 
    margin-bottom: 3.5rem; 
         color: #1a1a1a;
}

.programm-grid {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.programm-karte {
   background: white;
	border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
     transition     :  transform 0.3s;


}

.programm-karte:hover {

  transform: translateY(-8px);

	  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.programm-karte img {
   width: 100%;
    height: 240px;
  object-fit: cover;
}  

.programm-karte h3 {
  font-size: 1.5rem;
  padding: 1.5rem 1.5rem 0.8rem;
    color: #2c3e50;
}

.programm-karte p {
	padding: 0 1.5rem 1.8rem;
   color: #666;
   line-height: 1.7;
}

.methoden-sektion

{

   padding: 5rem 2rem;}

.methoden-layout {
   display: grid;
	grid-template-columns: 1fr 1fr;
   gap    :        4rem;
  align-items  :   center;
}

.methoden-bild img


{
   width: 100%;
   border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);


}

.methoden-text h2

{
  font-size: 2.3rem;
   margin-bottom: 1.5rem;
      color: #1a1a1a;
}

.methoden-text > p 
 {
   font-size: 1.15rem;
	 color: #555;
   margin-bottom: 2.5rem;
    line-height: 1.7;
}

.methoden-liste {
   display: flex;
 flex-direction: column;
  gap: 1.8rem;
}

.methode-punkt h4
	{
  font-size: 1.3rem;
   margin-bottom: 0.6rem;
    color :     #2c3e50;
}

.methode-punkt p {
   color: #666;
    line-height: 1.6;
}

.cta-block {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 2rem;
    color: white;
}

.cta-content
{
  text-align: center;
                    max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
     font-size: 2.5rem;
    margin-bottom: 1.5rem;}

.cta-content p {
    font-size: 1.2rem;

	  margin-bottom: 2.5rem;

	  line-height: 1.7;

	  opacity: 0.95;
}

.cta-button
{

	   background: white;
    color: #667eea;
   padding: 1.1rem 3rem;
	text-decoration: none;
    border-radius: 6px;
	font-weight: 600;
  font-size: 1.1rem;
    display: inline-block;
  transition: all 0.3s;
}

.cta-button:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.kontakt-bereich {
  padding: 5rem 2rem;

  background: #f8f9fa;
}

.kontakt-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
} 

.kontakt-info h2 {
               font-size     :   2.3rem;
  margin-bottom: 1.2rem;
         color: #1a1a1a;
}

.kontakt-info > p     {
  font-size     :    1.1rem;
	color: #666;
   margin-bottom: 2.5rem;
   line-height: 1.6;
}

.info-element  {
      margin-bottom: 2rem;}



.info-element h4 {
    font-size: 1.2rem;

	  margin-bottom: 0.6rem;

	     color: #2c3e50;
}

.info-element p {
  color: #555;
                    line-height: 1.7;
}

.kontakt-formular {
       background: white;
   padding: 2.5rem;
   border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	}

.form-zeile
{
    margin-bottom: 1.5rem;
}

.form-zeile input,
.form-zeile select,
.form-zeile textarea

{
  width: 100%;
   padding: 0.95rem 1.2rem;
         border: 2px solid #e1e8ed;
  border-radius: 6px;
   font-size   :1rem;
  font-family: inherit;
   transition: border-color 0.3s;
}

.form-zeile input:focus,
.form-zeile select:focus,
.form-zeile textarea:focus  
  {
     outline: none;
    border-color     :      #3498db;
     }

.form-zeile textarea {
    resize: vertical;
}

.submit-btn {
          transition: all 0.3s;
    border: none;
  padding: 1rem 2.5rem;
    font-weight: 600;
   font-size: 1.1rem;
  cursor: pointer;
    color: white;
  width: 100%;
  border-radius  :      6px;
  background: #3498db;
}

.submit-btn:hover {
    background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52,152,219,0.3);
}

.fussnote {
        background: #1a1a1a;
   color: #fff;
    padding     :  4rem 2rem 2rem;
}  

.footer-grid {
               display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap    :      3rem;
    margin-bottom: 3rem;
}

.footer-spalte h4 {
    font-size:1.2rem;
  margin-bottom: 1.2rem;
    color: #fff;
}

.footer-spalte p,
.footer-spalte a {
    color: #bbb;
   line-height: 1.8;
	text-decoration: none;
   display: block;
   margin-bottom: 0.5rem;
	 transition: color 0.25s;
	}

.footer-spalte a:hover {
    color: #3498db;
}

.footer-logo {
  height: 45px;
   margin-bottom  :    1.2rem;
  filter: brightness(0) invert(1);


}

.copyright {
  padding-top: 2rem;
  text-align: center;
    border-top: 1px solid #333;
     color: #888;
}@media (max-width: 768px) {
  .burger-icon {
    display: flex;
  }
  
  .hauptnavi {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: left 0.3s;
    gap: 1.5rem;
  }
  
  .hauptnavi.aktiv {
    left: 0;
  }
  
  .hero-bereich {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }
  
  .hero-inhalt h1 {
    font-size: 2.2rem;
  }
  
  .hero-inhalt p {
    font-size: 1.1rem;
  }
  
  .programm-grid {
    grid-template-columns: 1fr;
  }
  
  .methoden-layout {
    grid-template-columns: 1fr;
  }
  
  .kontakt-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}.uber-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               padding: 5rem 2rem;
  text-align: center;
  color: white; 
	
}

.uber-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem; 
		opacity: 0.95; 
	          max-width:       700px; 
	    margin: 0 auto;
     }

.mission-bereich {

		 padding: 5rem 2rem;

}

.mission-layout {
  display: grid;
				 grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2
{
  font-size: 2.5rem;
   margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.mission-text p {
    font-size: 1.1rem;
  color: #555;
  line-height  :     1.8;
	margin-bottom: 1.5rem;
}

.mission-bild img {
    width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.werte-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.werte-section h2 {
   text-align: center;
  margin-bottom: 3rem;
   color: #1a1a1a;
    font-size: 2.5rem;
}



.werte-raster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
               gap    :2.5rem;


}

.wert-box {
    background: white;
  padding: 2.5rem;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.wert-box h3 {
     font-size: 1.6rem;
   margin-bottom: 1rem;
    color: #2c3e50; 
	
}

.wert-box p {
   color :       #666;
   line-height: 1.7;
    font-size     :        1.05rem;
}

.ansatz-bereich {
    padding: 5rem 2rem;
}

.ansatz-content h2 {
   font-size: 2.5rem;
  margin-bottom: 1.5rem;
	text-align: center;
  color: #1a1a1a;
}

.ansatz-content > p {
  text-align: center;
    max-width: 850px;
   margin: 0 auto 3rem;
  font-size :        1.15rem;
   color: #555;
   line-height:    1.7;
}



.ansatz-grid {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
}

.ansatz-element   {
	 background   :     #f8f9fa;
  padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.ansatz-element h4
	{
    font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #2c3e50; 

}

.ansatz-element p
	{

	   color: #666;
					line-height:       1.6;
	}

.erfahrung-section {
	padding  : 5rem 2rem;
   background: #f8f9fa;
}

.erfahrung-section h2 {


    text-align: center;
          font-size: 2.5rem;
    margin-bottom: 3rem;
    color :        #1a1a1a;}



.erfahrung-wrapper {
  align-items: center;
   gap: 4rem;
 grid-template-columns: 1fr 1.3fr;
  display    :grid;
}

.erfahrung-bild img {
   width: 100%;
   border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.erfahrung-text p {
    font-size    :1.1rem;
    color: #555;
   line-height     :   1.8;
   margin-bottom: 1.5rem;
}

.standort-section
	{
		padding: 5rem 2rem; 
	
}

.standort-content h2 {

	        font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color    :#1a1a1a;


}

.standort-content > p		{
    font-size     :1.15rem;
    color: #555;
   line-height: 1.7;
  margin-bottom: 2.5rem;
}

.standort-details	{


	display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;


}

.detail-block {
   background  :      #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.detail-block h4 {
	font-size: 1.4rem;
   margin-bottom: 0.8rem;
  color : #2c3e50;
}

.detail-block p		{
   color: #666;
    line-height: 1.7;
} 

.cta-uber {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 4rem 2rem;
         color: white;
}

.cta-uber-content {
   text-align: center;
          max-width: 800px;
    margin: 0 auto;
}

.cta-uber-content h2 {
   font-size: 2.3rem;
    margin-bottom: 1.2rem;
}

.cta-uber-content p {
  font-size: 1.2rem;
   margin-bottom: 2rem;
   opacity: 0.95;
}

.danke-bereich {
  padding: 5rem 2rem;
  min-height: 60vh;
}

.danke-content {
  max-width: 900px;
    margin: 0 auto;
       text-align: center;
}

.danke-icon {
    margin-bottom: 2rem;
    display: flex;
   justify-content: center;
}

.danke-content h1 {
   font-size: 2.8rem;
	margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.danke-haupttext {
   font-size: 1.25rem;
  color: #555;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.danke-info	{
  background: #f8f9fa;
   padding: 3rem;
   border-radius: 10px;
  margin-bottom:   3rem;
  text-align: left;
}

.danke-info h3 {
   font-size   :    2rem;
   margin-bottom: 2rem;
  color: #2c3e50;
   text-align: center;
}

.schritte-liste {
    display: flex;
  flex-direction   :       column;
    gap: 2rem;
}

.schritt-item {
                    display: flex;
  gap     :        1.5rem;
   align-items: flex-start;}

.schritt-nummer {
   background: #3498db;
   color: white;
	 width:  50px;
  height: 50px;
   border-radius: 50%;
    display: flex;
   align-items :     center;
  justify-content: center;
	font-size: 1.5rem;
  font-weight: 700;
   flex-shrink  : 0;
}

.schritt-text h4 {
  font-size: 1.3rem;
    margin-bottom     :   0.6rem;
        color: #2c3e50;
}

.schritt-text p {
   color: #666;
  line-height: 1.6;
}

.danke-kontakt-box {
  background: white;
                    border :       2px solid #3498db;
  padding:  2.5rem;
  border-radius: 10px;
   margin-bottom: 3rem;
}

.danke-kontakt-box h3 {
    font-size: 1.8rem;
   margin-bottom: 1rem;
   color: #2c3e50;
}

.danke-kontakt-box p {
    color: #555;
    margin-bottom: 0.8rem;
}

.telefon-gross {
      font-size: 1.8rem;
 font-weight: 700;
 color: #3498db;
  margin: 1.5rem 0;
}

.kontakt-hinweis {
     font-size: 0.95rem;
  color: #888;
}

.danke-navigation {
  display: flex;
  gap: 1.5rem;
	 justify-content  :        center;
}



.zuruck-btn,
.mehr-btn {
     padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
  display: inline-block; 
}

.zuruck-btn {
  background: #3498db;
      color: white;
}

.zuruck-btn:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.mehr-btn {
   background: transparent;
  color :   #3498db;
    border:2px solid #3498db;
	
}

.mehr-btn:hover   {
   background: #3498db;
  color: white;
	
}

.zusatz-info {
    background: #f8f9fa;
  padding: 5rem 2rem;
}

.zusatz-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  color: #1a1a1a;
}

.info-karten
	{

	  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
    display: grid;


}

.info-karte {
  background: white;
   border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-karte img {

	    width: 100%;
   height: 220px;
    object-fit: cover;
	}

.info-karte h4 {
   font-size: 1.4rem;
   padding: 1.5rem 1.5rem 0.8rem;
               color: #2c3e50;
}

.info-karte p {
  padding: 0 1.5rem 1.8rem;

	  color    :  #666;

	               line-height: 1.7;
}@media (max-width: 768px) {
  .uber-hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .mission-layout {
    grid-template-columns: 1fr;
  }
  
  .werte-raster {
    grid-template-columns: 1fr;
  }
  
  .ansatz-grid {
    grid-template-columns: 1fr;
  }
  
  .erfahrung-wrapper {
    grid-template-columns: 1fr;
  }
  
  .standort-details {
    grid-template-columns: 1fr;
  }
  
  .danke-content h1 {
    font-size: 2rem;
  }
  
  .danke-haupttext {
    font-size: 1.1rem;
  }
  
  .danke-info {
    padding: 2rem;
  }
  
  .danke-navigation {
    flex-direction: column;
  }
  
  .info-karten {
    grid-template-columns: 1fr;
  }
}.policySection {
   padding: 80px 2rem;
   background: #f8f9fa;
}

.policyContainer {
    max-width: 800px;
	margin: 0 auto;
    text-align: left;
}

.policyContainer h2 {
	font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 1.5rem;
  font-weight     :     700;
}

.policyContainer p {
   color: #7f8c8d;
  margin-bottom: 1.5rem;
  line-height: 1.7;
   font-size: 1.1rem;
}@media (max-width: 768px) {
  .policyContainer h2 {
    font-size: 2rem;
  }

  .policyContainer p {
    font-size: 1rem;
  }

  .policySection {
    padding: 60px 1rem;
  }
}