/* Eigene Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

table {
  font-size: 1em;
  width: 98%;
  margin: 8px;
  border-collapse: collapse;
  font-family: arial;
  text-align: left;
  border-spacing: 2px;
  border: none;

}

td, th {
  padding: 0.5em ;
  margin: 0.5em;
}

.flag {
  width: 5rem;
  height: auto;
}

.quote {
  width: 100%;
  /* margin-left: auto;
  margin-right: auto; */
  padding-left: 3em;
  padding-right: 3em;
  padding-top: 1em;
  padding-bottom: 1em;
  height: auto;
  background-color: #f5d3a2;
  font-family:  Verdana, sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: #893d21;

}


/* Top-Navigation */
.top-nav {
    line-height: 3rem;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #ccc;
    z-index: 10;
}
.top-nav img {
    height: 60px;
}
.top-nav .menu {
    display: flex;
    gap: 15px;
}
.top-nav .menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 8px 12px;
}
.top-nav .menu a:hover {
    background-color: #FFCC99; /* Hellorange */
    border-radius: 5px;
}

/* Hamburger Icon für mobile Ansicht */
.top-nav .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.top-nav .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
}

/* Mobile Menü */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 15px;
    background-color: #ffffff;
    position: sticky;
    top: 60px;
    right: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 10;
}
.mobile-menu a {
    display: block;
    line-height: 3rem;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
.mobile-menu a:hover {
    background-color: #FFCC99;
    border-radius: 5px;
    padding: 8px 12px;
}

/* Hero-Bereich / Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
}
.slider-images {
    display: flex;
    transition: transform 0.5s ease;
}
.slider-image {
    min-width: 100%;
    height: 500px;
}

/* Pfeile */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2em;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}
.arrow-left {
    left: 10px;
}
.arrow-right {
    right: 10px;
}

/* Overlay-Text */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-weight: bold;
}
.hero-text h1 {
    font-size: 2.8em;
    font-weight: bold;
    margin: 0;
    color: #FF6600; /* Orange Farbe */
}
.hero-text p {
    font-size: 1.2em;
    margin-top: 10px;
    color: white;
}

/* Sektionen */
.section-title {
    text-align: center;
    font-size: 1.5em;
    margin: 40px 0;
}

.section-title_2 {
    text-align: left;
    font-size: 1.5em;
    margin: 15px 40px 0 30px;
}

.features, .services, .strengths {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 20px;
    flex-wrap: wrap;
}
.features div, .strengths div {
    flex: 1;
    margin: 10px;
}
.services div {
                        <!-- width: 30%; -->
    margin: 10px;
}
.icon-placeholder {
    font-size: 2em;
    margin-bottom: 10px;
    color: #FF6600; /* Orange */
    width: 100%;
}

.open {
  width: 450px;
  height: 330px;
}

.illu-item {
  width: 50%;
  float: right;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .top-nav .menu {
        display: none;
    }
    .top-nav .hamburger {
        display: flex;
    }
    .services div {
        width: 100%;
    }

    .open {
      width: 300px;
      height: 220px;
    }

    .icon-container_2 img {
        display: none;
    }

}

.datenschutz {
  text-align: left;
  width: 50%;

}

/* Footer */
.footer {
    background-color: #990000;
    color: white;
    text-align: center;
    padding: 20px;
}
