<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
 * ================================================
 * Projekt:     MPR Werbefactory â€“ Kundenwebsite
 * Datei:       assets/css/base.css
 * Autor:       MPR Werbefactory (www.mpr-werbefactory.de)
 * Version:     1.0.0
 * Erstellt:    2025-05-19
 * Lizenz:      ProprietÃ¤r â€“ Verwendung nur mit Genehmigung
 * ================================================
 */
   
/* ==== Basis-Einstellungen ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  color: rgba(25, 112, 182, 1);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1970b6;
}

h1 {
  margin: 30px 0;
  color: #1c2e52;
  font-size: 32px;
  font-weight: 600;
}

h2 {
  color: #1c2e52;
  font-size: 22px;
  font-weight: 500;
}

h3 {
  color: #1c2e52;
  margin-bottom: 5px;
  font-weight: 500;
}

h4 {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.2em;
  color: #1c2e52;
}

p {
  margin-bottom: 15px;
}

ul, ol {
  margin-left: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
}

li {
  margin-bottom: 5px;
}

hr {
  margin: 15px 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* Anker-Link Offset fÃ¼r fixiertes Header */
html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 100px;
}</pre></body></html>