footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f0f0f0;
  text-align: center;
  padding: 10px 0;
  z-index: 999;
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

.content p,
.content {
  flex: 1;
  font-size: 1.125rem; /* entspricht ca. 18px */
  line-height: 1.6;     /* besser lesbar */
}



/* style.css – v1.2: Feinschliff für Produktseiten + Startseite */
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #fff;
    color: #333;
}

header {
    background-color: #1f4ea8;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    font-weight: bold;
    font-size: 1.3rem;
}
nav {
    display: flex;
    gap: 1rem;
}
nav a,
nav a:visited {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}
.dropdown {
    position: relative;
}
.dropdown span {
    cursor: pointer;
}
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #1f4ea8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1001;
    min-width: 180px;
}
.dropdown-content a {
    color: white;
    padding: 0.5rem 1rem;
    display: block;
}
.dropdown-content a:hover {
    background-color: #4a74d1;
}
.dropdown:hover .dropdown-content {
    display: block;
}

.hero {
    text-align: center;
    background: #eef5fc;
    padding: 2rem;
}
.hero-img {
    max-width: 250px;
    margin-bottom: 1rem;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    padding: 2rem;

  margin-bottom: 120px; }
.feature {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: block;
}
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.feature img {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}
.feature h2 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 0.5rem;
}
.feature p {
    font-size: 0.95rem;
    color: #555;
}

main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
    line-height: 1.65;
    text-align: left;
}
main h1 {
    font-size: 2rem;
    color: #1f4ea8;
    margin-bottom: 1rem;
    text-align: center;
}
.product-img {
    display: block;
    max-width: 300px;
    width: 100%;
    margin: 1rem auto 2rem auto;
}
main p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
main ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}
main ul li {
    margin-bottom: 0.5rem;
}

.footer-offset {
  height: 100px;
}

.impressum-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  background-color: #f0f4fa;
  padding: 2em;
  border-radius: 8px;
  margin-top: 2em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.impressum-grid div {
  flex: 1 1 300px;
}

.impressum-grid h3 {
  margin-top: 0;
  font-size: 1.2em;
}

.impressum-grid a {
  color: #0645ad;
  text-decoration: underline;
}

.impressum-grid {
  color: #1544b0;
}

.section-title {
  color: #1544b0;
  margin-top: 0;
  font-size: 1.6em;
  text-align: left;
  width: 100%;
}


