/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #0d294a;
  background: #ffffff;
}

/* HEADER */
.impressum-header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
}

.impressum-logo img {
  height: 44px;
}

/* MAIN */
.impressum-main {
  padding: 80px 0;
}

.impressum-title {
  text-align: center;
  margin-bottom: 60px;
}

.impressum-title h1 {
  font-weight: 700;
  margin-bottom: 8px;
}

.impressum-title p {
  color: #666;
}

/* CONTENT BLOCKS */
.impressum-block {
  max-width: 760px;
  margin: 0 auto 40px;
}

.impressum-block h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.impressum-block p {
  line-height: 1.7;
  color: #333;
}

/* FOOTER */
.impressum-footer {
  background: #0d294a;
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 42px;
  margin-bottom: 14px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col i {
  margin-right: 8px;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 18px;
  text-align: center;
  font-size: 14px;
  opacity: 0.85;
}

/* MOBILE */
@media (max-width: 768px) {
  .impressum-main {
    padding: 60px 20px;
  }
}

/* ===== Base ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f7f9fc;
  color: #0d294a;
}

/* ===== Header ===== */
.impressum-header {
  background: #ffffff;
  padding: 18px 0;
  text-align: center;
  border-bottom: 1px solid rgba(13, 41, 74, 0.08);
}

.impressum-logo img {
  max-height: 56px;
}

/* ===== Content ===== */
.impressum-content {
  padding: 70px 16px;
  display: flex;
  justify-content: center;
}

.impressum-box {
  background: #ffffff;
  max-width: 860px;
  width: 100%;
  padding: 48px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Headings */
.impressum-box h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}

.impressum-box .subtitle {
  text-align: center;
  color: #5f6f86;
  margin-bottom: 40px;
}

.impressum-box h2 {
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Text */
.impressum-box p {
  line-height: 1.7;
  margin: 0;
  color: #2f2f2f;
}

.impressum-box a {
  color: #0d294a;
  font-weight: 500;
  text-decoration: none;
}

.impressum-box a:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
.impressum-footer {
  background: #0d294a;
  color: #ffffff;
  text-align: center;
  padding: 22px 16px;
  font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .impressum-box {
    padding: 32px 22px;
  }

  .impressum-box h1 {
    font-size: 26px;
  }
}


