:root {
  --labour-red: #E4003B;
  --ink: #1a1a1a;
  --paper: #f7f5f2;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  background: var(--labour-red);
  padding: 1.5rem 1rem;
}

.site-header__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__logo {
  height: 32px;
  width: auto;
}

.site-header__name {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* Main notice */
.notice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.notice__box {
  max-width: 560px;
  text-align: center;
}

.notice__box h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.notice__box p {
  line-height: 1.6;
  color: #444;
}

.notice__contact {
  margin: 1.75rem 0;
}

.button {
  display: inline-block;
  background: var(--labour-red);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  transition: opacity 0.15s ease;
}

.button:hover {
  opacity: 0.85;
}

.social {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0 0 2rem;
}

.social a {
  color: var(--labour-red);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

.social a:hover {
  border-bottom-color: var(--labour-red);
}

.notice__national {
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  font-size: 0.95rem;
  color: #555;
}

.notice__national-links a {
  color: var(--labour-red);
  text-decoration: none;
  font-weight: 600;
}

.notice__national-links a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid #e2e2e2;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

.site-footer__address {
  font-style: normal;
  margin-bottom: 0.5rem;
}

.site-footer__address a {
  color: #777;
}

.site-footer__imprint {
  margin: 0.25rem 0;
}

.site-footer__copyright {
  margin: 0.25rem 0 0;
}
