/* Farben */
:root {
    --gruen: #72864D;
    --grau: #E6E3E4;
    --gruengrau: #999966;
    --hellgruen: #C6C6AA;
    --schriftgruen: #495632;
    --schriftgrau: #111111;
    --schriftweiss: #FFFFFF;
    --weiss: #FFFFFF;
}

/* Grundlayout */
body {
    font-family: "Trebuchet MS", sans-serif;
    margin: 0;
    background: var(--grau);
    color: var(--schriftgruen);
}

/* Header */
.header-title {
    background: var(--gruen);
    color: var(--schriftweiss);
    padding: 10px;
    font-size: 0.8rem;
    text-align: center;
    font-weight: bold;
    border-radius: 30px;
}

.toplinks {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    padding: 8px 20px;
    background: var(--grau);
}

.toplinks a {
    color: var(--schriftgruen);
    text-decoration: none;
    font-weight: normal;
    font-size: 0.8rem;
    
}

/* Seite: Contentblock + Aside */
.pagewrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* Contentbereich */
.contentwrap {
    max-width: 900px;
    width: 100%;
}

.contentbox {
    background: var(--weiss);
    padding: 20px;
    border-radius: 30px;
    margin-top: 30px;
}

/* Zweigeteilte Bereiche */
.split {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 20px;

}

.split-left,
.split-right {
    flex: 1;
}

.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

/* Sidebar rechts */
.sidebar {
    width: 220px;
    background: var(--weiss);
    padding: 20px;
    border-radius: 6px;
    height: fit-content;
    margin-top: 35px;

}

.sidebar a {
    color: var(--schriftgruen);
    text-decoration: none;
}

.sidebar a:hover {
    color: var(--blau);
}

.button
{
    background: var(--gruen);
    color: var(--schriftweiss);
    padding: 15px;
    font-size: 10pt;
    font-weight: normal;
    border-radius: 30px;
	border: 0px none;
	width: 410px;
	font-family: "Trebuchet MS", sans-serif;

}
.button a {
    color: var(--weiss);
}

.button:hover {
    background: #999966; /* gruengrau */
    color: var(--weiss);
}

.contentbox-green
{
    background: var(--gruen);
    color: var(--schriftweiss);
    padding: 15px;
    font-size: 12pt;
    font-weight: normal;
    border-radius: 30px;
	border: 0px none;
	font-family: "Trebuchet MS", sans-serif;
	text-align: center;
	margin-top: 30px;
}

.contentbox-green:hover {
    background: #999966; /* gruengrau */
    color: var(--weiss);
}
.contentbox-green a {
    color: var(--weiss);
}

.link-green a {
    color: var(--schriftgruen);
    font-family: Trebuchet MS; 
    font-size: 1.0rem;
}

.qa-grid {display: grid;grid-template-columns: 50% 50%; border: 0px solid #ccc; border-radius: 1px; margin: 10px 0;}
.qa-grid dt, .qa-grid dd {padding: 10px 10px; margin: 0; border-bottom: 0px solid #e0e0e0;}
/* dt optisch hervorheben */
.qa-grid dt {font-weight: normal; background: #ffffff;}
/* Zebra-Streifen: jede zweite "Zeile" einfärben */
.qa-grid dt:nth-of-type(2n), .qa-grid dd:nth-of-type(2n) {background: #F3FCE2;}
/* letzte Zeile ohne untere Linie */
.qa-grid dd:last-of-type {border-bottom: none;}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0px;
    padding: 20px; 
    text-align: center;   

}
.table th {
    background: var(--gruen);
    color: var(--weiss);
    margin-top: 20px;
    padding: 20px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto; /* wichtig für % Breiten */
  font-family: "Trebuchet MS", sans-serif;
  font-size: 11pt;
  }

.price-table th,
.price-table td {
  padding: 4px 4px;
  border: 1px solid #333;
  text-align: center;
  color: #333;
}

/* Spaltenbreiten */
.col-price  { width: 22%; }
.col-k1000  { width: 39%; }
.col-k1500  { width: 39%; }

/* Kopfzeile */
.price-table thead th {
  background: #495632;
  color: #fff;
  font-weight: 600;
}

.price-table thead .sub {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Zebra-Streifen */
.price-table tbody tr:nth-child(even) {
  background: #E6E3E4;
}

.price-table tbody tr:nth-child(odd) {
  background: #fff;
}


/* Footer */
.footer {
    text-align: center;
    padding: 10px;
    background: var(--gelb);
    color: var(--schriftgruen);
    margin-top: 20px;
    margin-left: 40px;
}

/* Responsive */
@media (max-width: 1100px) {
    .pagewrap {
        flex-direction: column;
        align-items: center;
    }

    .sidebar {
     	width-max: 30%;
     	order: 2;
    }

    .contentwrap {
     	order: 1;
    }

   .split {
    	display: flex;
    	gap: 20px;
    	margin-bottom: 20px;
    	margin-top: 20px;

}

	.split-left,
	.split-right {
    	flex: 1;
}

	 .responsive-img {
    	width: 100%;
    	height: auto;
    	border-radius: 30px;
}

}

@media (max-width: 900px) {
    .mainnav {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .mainnav .navitem {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 0;
        border-bottom: 1px solid var(--gelb);
    }

    .mainnav .navitem:last-child {
        border-bottom: none;
    }
    
    .responsive-img {
    	width: 100%;
    	height: auto;
    	border-radius: 30px;
}

    h1 {
        font-size: 1.2rem;
        line-height: 1.2;
        margin-top: 10px;
        margin-bottom: 14px;
    }
    
    h2 {
        font-size: 1.1rem;
        line-height: 1.1;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .text-table {
  	width: 100%;
  	border-collapse: collapse;
  	margin-top: 20px;
}	

}

@media (max-width: 600px) {
    .mainnav ul {
        flex-direction: column;
    }
    .responsive-img {
    width: 70%;
    height: auto;
    border-radius: 30px; 
    
}
	.nopunkt { 
	list-style-type: none; 
	padding-left: 0; }	
   
    .split {
        flex-direction: column;
    }
	
}	