/* Grundstruktur */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #f0f4f9;
  color: #222;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

a {
  color: #003366;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Container */
.content, .inside {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header */
.site-header {
  background-color: #99CCFF;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.site-header h1 {
  font-size: 1.8rem;
  margin: 0;
  color: #003366;
}

/* Navigation */
.site-nav {
  background-color: #003366;
  color: white;
  padding: 0.75rem 1rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-nav li {
  display: inline;
}

.site-nav a {
  color: white;
  font-weight: 500;
}

.site-nav a:hover {
  text-decoration: underline;
}

/* Inhalt */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
  margin: 2rem 0;
}

.column {
  flex: 1 1 47%;
}

/* Spezielle Kachel für Highlights */
.highlight-box {
  background-color: #eaf3fc;
  border-left: 5px solid #007acc;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.highlight-box h2 {
  color: #005a9c;
  margin-top: 0;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.highlight-box h2::before {
  content: '\1F4A1'; /* Glühbirne-Emoji */
  font-size: 1.5rem;
}

.price-box {
  background-color: #fffbe6;
  border-left: 5px solid #ffcc00;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.price-box h2 {
  color: #996600;
  margin-top: 0;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-box h2::before {
  content: '\1F4B8'; /* Geld mit Flügel Emoji */
  font-size: 1.5rem;
}

.price-box ul, .highlight-box ol {
  padding-left: 1.2rem;
}

/* Footer */
.site-footer {
  background-color: #000;
  color: white;
  padding: 1rem 0;
  font-size: 0.9rem;
}

.meta-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.meta-nav a {
  color: white;
  text-decoration: none;
}

.meta-nav a:hover {
  text-decoration: underline;
}

/* Responsiv */
@media screen and (max-width: 768px) {
  .row {
    flex-direction: column;
  }
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav ul {
    flex-direction: column;
  }
  .site-header h1 {
    font-size: 1.5rem;
  }
}

.info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  margin: 2rem 0;
}

.info-box {
  flex: 1 1 100%;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  font-size: 11pt;
}

.info-blue {
  background-color: #e6f0ff;
  border-left: 6px solid #007bff;
}

.info-yellow {
  background-color: #fff8e1;
  border-left: 6px solid #ffcc00;
}

.info-green {
  background-color: #e6f4ea;
  border-left: 6px solid #4CAF50;
}

.icon {
  font-size: 1.2em;
  margin-right: 0.4em;
}

@media (min-width: 768px) {
  .info-box {
    flex: 1 1 calc(50% - 0.5rem);
  }
}

.button {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
}

.button:hover {
  background-color: #0056b3;
}

.site-header {
  background-color: #99CCFF;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-right img {
  max-height: 58px;
}