* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
	margin: 0;
    padding-bottom: 30px;
    min-height: 100vh;
    box-sizing: border-box;
}

img{
	max-width: 100%;
	margin: 5px;
}

video{
	max-width: 100%;
	margin: 5px;
}

a {
    color: #FF5722;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:focus:not(:focus-visible) {
  outline: none;
}

ul , ol{
margin-left: 30px;
}

.logo a{
    text-decoration: none;
}

.logo a:hover{
    text-decoration: none;
}

p{
margin-top: 7px;
margin-bottom: 7px;
}

nav ul{
	margin:0;
	padding:0;
	list-style: none;
}

h1{
font-size: 1.8em;
}

/* Header */
.site-header {
    background-color: #333;
    color: #fff;
    padding: 0.5rem;
	padding-left: 2rem;
	padding-right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
}

.hamburger-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #333;
    z-index: 1000;
}

.main-nav.active {
    display: block;
}

.menu {
    width: 100%;
}

.menu-item {
    border-bottom: 1px solid #555;
    position: relative;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item a {
    display: block;
    padding: 1rem;
    color: #fff;
    transition: background-color 0.3s ease;
	text-decoration: none;
}

.menu-item a:hover {
	text-decoration: none;
    background-color: #555;
}

.submenu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 1rem;
    z-index: 1;
    display: block;
}
.submenu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


.submenu {
    display: none;
    background-color: #555;
    padding-left: 1rem;
}

.submenu.active {
    display: block;
}

.submenu-item a {
    padding-left: 2rem;
    font-size: 0.9rem;
}

.submenu-item a:hover {
    background-color: #666;
}

/* main footer */
main {
    padding: 0.5rem;
	padding-bottom: 2rem;
}

footer {
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    background-color: #ddd;
}





/* --- Desktop Styles --- */
@media (min-width: 700px) {
    .hamburger-btn {
        display: none;
    }

    .main-nav {
        display: block !important;
        position: static;
        width: auto;
		background-color: #333;
    }
	
	nav > ul > li.menu-item.has-submenu:last-child > ul.submenu {
     left: auto;
     right: 0;
    }

    .menu {
        display: flex;
    }

    .menu-item {
        border-bottom: none; 
        position: relative;
    }

    .menu-item a {
        padding: 0.5rem;
        color: #fff;
		border: 1px solid #444;
    }
     .menu-item a:hover {
        background-color: #555;
    }

    .submenu-toggle {
        display: none;
    }

    .submenu {
        display: none; 
        position: absolute;
        top: 100%; 
        left: 0;
        background-color: #444;
        min-width: 250px; 
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        padding-left: 0; 
    }

    .menu-item:hover > .submenu {
        display: block;
    }

    .submenu-item {
        border-bottom: 1px solid #555;
    }
     .submenu-item:last-child {
        border-bottom: none;
    }

    .submenu-item a {
        padding: 0.5rem; 
        padding-left: 1rem; 
        font-size: 1rem;
         color: #fff;
    }
    .submenu-item a:hover {
         background-color: #666;
    }
	
	main{
		margin: 0 auto;
		max-width: 1200px;
	}

}

a:focus, button:focus {
    outline: 2px solid dodgerblue;
    outline-offset: 2px;
}

.submenu a:focus {
    outline-color: lightblue;
}

.lang-switch{
margin:0;
padding:0;
margin-left: 1.5rem;
display: inline;
}

.lang-switch  a{
margin:0;
padding:0;
color: lightgray;
margin-left: 0.3rem;
margin-right: 0.3rem;
font-size: 1em;
font-weight: normal;
}

.lang-switch a.active {
text-decoration: underline;
}


/* --------------------------------------- */
footer {
	box-shadow: 0 -10px 15px rgba(0, 0, 0, 0.2);
	border-top: 1px solid white;
	background-color: #222;
	color: #fff;
	padding: 0;
	margin: 0;
	font-size: 14px;
	
}

footer p{
	margin:0;
	padding:0;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding-bottom: 5px;
	padding-top: 5px;
}

.footer-left, .footer-right {
	display: flex;
	align-items: center;
}

.footer-link {
	color: #fff;
	text-decoration: none;
	margin: 0 10px;
}

.footer-link:hover {
	text-decoration: underline;
}

.fixed-bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
}

/*------------------------*/

.box2holder{
	max-width: 75%; margin-left: 20px;
}

.box2 {
  display: inline-block;
  padding: 0;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 4px;
  padding-right: 4px;
  
  text-decoration: none;
  color: #333;
  background-color: white;
  border: 1px solid #dcdcdc; 
  border-radius: 5px; 
  font-size: 0.95em;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  margin-bottom: 3px;
}

.box2:hover,
.box2:focus {
  
  border-color: #c0c0c0;
  color: #ff5722;
  outline: 2px solid transparent;
  text-decoration: none;
}

.box2:focus-visible {
  outline: 2px solid #0056b3; 
  outline-offset: 2px;
}

.box2.is-active {
  background-color: #007bff;
  color: white;
  border-color: #0056b3;
  font-weight: bold;
}

/*------------------------*/
.offer h2{
justify-content: left;
text-align: left;
margin-top: 25px;
	max-width: 960px;
	margin: 0 auto;

}

.hero{
justify-content: center;
text-align: center;
margin-top: 15px;
}

/*------------------------*/



.content-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px;
    max-width: 1250px;
    margin: 20px 0 20px 0;
}


.offers-column {
}

.offer {
    margin-bottom: 30px;
    padding: 0 10px;
}

.offer h2 {

    text-align: left; 
    margin-top: 15px;
    margin-bottom: 0px;

}

/* --- .cards: Container */


.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: left; 
    max-width: 1000px; 
    margin: 0 auto;    
    row-gap: 10px;
    
}

.card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    
    max-width: 305px; 
    margin: 10px; 
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.card h3 { margin-top: 0; margin-bottom: 10px; font-size: 1.4em; color: #FF5722; }
.card p { margin-bottom: 0; font-size: 0.95em; line-height: 1.6; }
.card-link {
    display: block;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    position: static;
}
.cards a{
	text-decoration: none;
}
.cards a:hover{
	text-decoration: none;
}


/* --- Newsbox: (Rechte Spalte) --- */
.newsbox {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}
.newsbox h2 { font-size: 1.5em; color: #343a40; margin-bottom: 15px; border-bottom: 1px solid #ced4da; padding-bottom: 10px; }
.news-item { display: flex; margin-bottom: 15px; gap: 10px; }
.news-date { font-weight: bold; color: #6c757d; flex-shrink: 0; width: 90px; }
.news-text { color: #495057; flex-grow: 1; }



@media (min-width: 900px) { 
    .content-split {
        
               grid-template-columns: 1fr 3fr; 
        gap: 30px; 
    }

    
    .offer h2 {
        text-align: left; 
    }
}



.cta {
	background: #ff5722;
	color: #fff;
	padding: 15px 30px;
	text-decoration: none;
	font-size: 1.1em;
	border-radius: 5px;
	display: inline-block;
	min-width: 210px;
	margin: 15px;
	text-align: center;
}

/* --------------------------------------- */

.blog-list-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 5px;
      margin-bottom: 20px;
    }
        .blog-list-container a{
	text-decoration: none;
	color: black;
	}
    .blog-list-left {
      flex: 1;
      
      padding: 20px;
    }
    .blog-list-right {
      flex: 3;
      
      margin:0;
      padding:0;
    }
	.blogthumb{
		max-width: 100%;
	}
	.blogtitle{
		font-size: 1.1em;
	}
	.blogmeta{
		font-size: 0.8em;
		font-style: italic;
	}
	.bloglink{
	}


    .blog-filter-details {
      width: 200px;
      /*margin-left: auto;*/
	  left:0;
	  position: relative;
	  margin-bottom: 20px;
    }
    .blog-filter-summary {
     padding: 0.1rem;
      padding-left: 0.5rem;
      padding-right: 0.5rem;
      
      background-color: #bbb;
      cursor: pointer;
      font-size: 1rem;
      text-align: center;

    }
    
    .blog-filter-nav{
     position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      padding: 0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      z-index: 5000;

    }
    .blog-filter-nav a {
      display: block;
       padding: 0.5rem;
      text-decoration: none;
      color: black;
      background-color: #f9f9f9;
      border-top: 1px solid #ddd;
    }
    .blog-filter-nav a:hover {
      background-color: #ddd;
    }

@media (max-width: 760px) {
	.blog-list-container {
		flex-direction: column;
	border-top: 1px solid lightgray;
	/*border-bottom: 1px solid #8F8F8F;*/
      }
      .blog-list-left {
      text-align: center;
      margin:0;
      padding:0;
    }
	    .blog-filter-details {
			
		}

}

/* --------------------------------------- */


#keyword_hr{
	margin-bottom: 25px;
	margin-top: 25px;
	clear: both;
}
/* --------------------------------------- */

table, tr, td{
	border: 1px solid lightgray;
	border-collapse: collapse;
}

td{
	padding: 2px;
}

table{
	margin-bottom: 8px;
	margin-top: 8px;
	width: 100%;
}
tr td:first-child,
tr th:first-child {
  min-width: 15%;
}


/* --------------------------------------- */

.detailsmenu-nav {
  margin-top: 20px;
  margin-bottom: 30px; 
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
}

.detailsmenu-list {
  list-style: none; 
  padding: 0;
  margin: 0;
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
}


.detailsmenu-item {
  
}


.detailsmenu-link {
  display: inline-block; 
  padding: 10px 18px;
  text-decoration: none;
  color: #333; 
  background-color: #f4f4f4; 
  border: 1px solid #dcdcdc; 
  border-radius: 5px; 
  font-size: 0.95em;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}


.detailsmenu-link:hover,
.detailsmenu-link:focus {
  background-color: #e9e9e9; 
  border-color: #c0c0c0;
  color: #000; 
  outline: 2px solid transparent; 
  text-decoration: none;
}


.detailsmenu-link:focus-visible {
  outline: 2px solid #0056b3; 
  outline-offset: 2px;
}



.detailsmenu-link.is-active {
  background-color: #007bff; 
  color: white;
  border-color: #0056b3;
  font-weight: bold;
}


.detailsmenu-content-section {
  padding-top: 70px; 
  margin-top: -70px; 
}


@media (max-width: 480px) {
  .detailsmenu-list {
    gap: 8px; 
  }
  .detailsmenu-link {
    padding: 8px 12px; 
    font-size: 0.9em;
  }
}

/*-----------------------------------*/

p.bold {
font-weight: bold;
}
p.sitalic {
font-style: italic;
font-size: 0.8em;
}
p.italic {
font-style: italic;
}
p.warning {
font-style: italic;
font-size: 0.8em;
}
p.thewarningred {
color: red;
}
p.thewarninggreen {
color: green;
}
.italic {
font-style: italic;
}
.italicbold {
font-weight: bold;
font-style: italic;
}

.italic {
font-style: italic;
}

.bold{
font-weight: bold;
}

.nomargin {
padding: 0;
margin: 0;
}

.top_margin {
padding: 0;
margin: 0;
margin-top: 10px;
}

.buttoncontainer{
display: inline;
clear:both;
text-align: center;
}

.smallbutton2{
margin: 10px;
display: inline-block;
padding: 10px;
border-radius: 7px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border-collapse: separate;
cursor: pointer;
background: #ff5722;
color: #fff;
font-size: 1em;
box-shadow: 1px 1px 4px 0px #000;
}

.smallbutton3{
display: inline-block;
background: #8E8888;
padding: 4px;
border-radius: 7px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border-collapse: separate;
text-decoration: none;
cursor: pointer;
background: #ddd;
color: #333;
font-size: 0.9em;
text-shadow: 2px 2px 3px #ddd;
box-shadow: 1px 1px 4px 0px #000;
}

.red{
color: red;
font-weight: bold;
font-size:1.3em;
margin-left: 25px;
}

.smallmenu a{
font-weight: bold;
text-decoration: none;
color: #7A7D86;
display: inline-block;
padding-right: 15px;
margin-top: 5px;
margin-bottom: 5px;
}
.smallmenu a:hover{
font-weight: bold;
color: black;
text-decoration: underline;
}

code{
font-family: monospace;
}
.specialcode{
font-family: monospace;
white-space: pre-wrap;
}
.codecontainer{
padding-left: 5px;
padding-right: 2px;
background: #D9EBFD;/*#B3D7FB;*/
}
.codeoutcontainer{
padding-left: 5px;
padding-right: 2px;
padding-bottom: 2px;
background: #B1B4FC;
}

.smallbuttonbuy{
display: inline-block;
background: #8CAED1;
padding: 5px;
border-radius: 7px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border-collapse: separate;
text-decoration: none;
cursor: pointer;
color: #000000;
font-size: 0.9em;
text-shadow: 2px 2px 3px #ddd;
box-shadow: 1px 1px 4px 0px #000;
}

.tablist{
text-align: right;
background: #eee;
font-size: 0.85em;
font-weight: bold;
}


.faqdiv{
font-weight: bold;
font-size: 0.8em; 
margin-left: 25px;
margin-top: 50px;
color: darkblue;
}

.ubold{
font-weight: bold;
font-size: 0.9em;
}

.blueback{
padding: 25px;
margin: 10px;
background: #CFE7F5;/* #B4D7FE;/*#23313F;*/
color: black;
font-weight: bold;
}

.masterimg, .masterimg img{
max-width: 98%;
text-align: center;
}
.masterimg img{
max-height: 500px;
border: 1px dashed lightgray;
padding: 2px;
}

.img-right50{
max-width: 50%; float: right;
padding: 5px; border: 1px solid lightgray;
}

.imgmax{
max-width: 100%;
}

.smallimg{
max-width: 400px;
}

.img10r{
clear: both;
float:right;
max-width: 100%;
padding: 10px;
}
.img10{
max-width: 100%;
padding: 10px;
border: 1px solid lightgray;
}
.img0{
max-width: 100%;
}


/*-----------------------------------*/

#keywords{
margin-top: 0px;
margin-right: 10px;
max-width: 200px;
text-align:center;
border: 1px solid black;
padding: 1px;
border-radius: 5px;
color: #888;
text-shadow: 1px 1px 3px #bbb;
}
#keywords a{
outline: none;
text-decoration: none;
color: #888;
text-shadow: 1px 1px 3px #bbb;
}
#keywords a:hover{
color: black;
text-decoration: none;
text-shadow: 1px 1px 1px white;
}

.keywords2{
margin-top: 0px;
margin-right: 10px;
max-width: 200px;
text-align:center;
border: 1px solid black;
padding: 1px;
border-radius: 5px;
color: #888;
text-shadow: 1px 1px 3px #bbb;
}
.keywords2 a{
outline: none;
text-decoration: none;
color: #888;
text-shadow: 1px 1px 3px #bbb;
}
.keywords2 a:hover{
color: black;
text-decoration: none;
text-shadow: 1px 1px 1px white;
}
/*-----------------------------------*/
