/* ================================================
   Malermeister Hinsch — global.css
   Komplett eigenstaendiges Design
   ================================================ */

/* ── FONTS ── */
@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/Manrope-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/Manrope-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/Manrope-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ── CUSTOM PROPERTIES ── */
:root {
  --primary: #0984c3;
  --primary-dark: #076a9c;
  --primary-light: #e6f3fb;
  --dark: #4c4e50;
  --dark-hover: #3a3c3e;
  --accent-yellow: #f1d206;
  --accent-red: #d10a11;

  --text: #333;
  --text-muted: #666;
  --text-light: #bbb;
  --white: #fff;
  --border: #e2e8f0;
  --bg-light: #ededee;

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1200px;
  --container-pad: 1.5rem;
  --radius: 8px;
  --duration: 0.25s;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--duration);
}

a:hover {
  color: var(--primary-dark);
}

ul[role="list"] {
  list-style: none;
}

address {
  font-style: normal;
}

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 500;
}
.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.container--narrow {
  max-width: 800px;
}

.text-center {
  text-align: center;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
}

h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.125rem;
  font-weight: 800;
}

p {
  margin-bottom: 1.5rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 800;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, background-position 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #3aaee0 0%, #0984c3 50%, #076a9c 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--white);
  border: none;
}
.btn-primary:hover {
  background-position: 100% 50%;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(9, 132, 195, 0.35);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(9, 132, 195, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 3px solid #3aaee0;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: #0984c3;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--duration), box-shadow var(--duration);
}

.site-header.is-scrolled {
  background: var(--dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 80px;
  gap: 1rem;
}

.logo-img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: none;
  margin-left: auto;
}

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-right: 20px;
}

.nav-list a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--duration);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--accent-yellow);
}

.header-cta {
  display: none;
  padding: 0.75rem 2.25rem;
  font-size: 0.9375rem;
  min-width: 180px;
}

/* ── HAMBURGER ── */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--duration), opacity var(--duration);
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  top: -7px;
}

.nav-toggle-icon::after {
  top: 7px;
}

/* Hamburger open state */
.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ── MOBILE NAV (Fullscreen Overlay) ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
  opacity: 0.8;
  transition: opacity var(--duration), transform var(--duration);
}

.mobile-nav__close:hover {
  opacity: 1;
  transform: scale(1.15);
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 6rem var(--container-pad) 2rem;
}

.mobile-nav__links {
  list-style: none;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mobile-nav__links a {
  display: inline-block;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-weight: 800;
  font-size: clamp(1.5rem, 5vw, 2rem);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color var(--duration), transform var(--duration);
}

.mobile-nav__links a:hover,
.mobile-nav__links a[aria-current="page"] {
  color: var(--accent-yellow);
  transform: scale(1.05);
}

.mobile-nav__contact {
  text-align: center;
  padding-bottom: 2rem;
}

.mobile-nav__contact p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.mobile-nav__contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.mobile-nav__contact a:hover {
  color: var(--white);
}

/* Body scroll-lock wenn Menu offen */
body.menu-is-open {
  overflow: hidden;
}

/* Header transparent wenn Menu offen */
body.menu-is-open .site-header {
  background: transparent !important;
  box-shadow: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav {
    transition: none;
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg picture,
.hero-bg img,
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 6rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.hero-subtitle {
  color: var(--white);
  font-weight: 500;
  font-size: 1.3125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero h1 {
  margin-bottom: 0.75rem;
}

/* ── PAGE HERO (Unterseiten) ── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg picture,
.page-hero-bg img,
.page-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 8rem 0 4rem;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: rgba(76, 78, 80, 0.55);
}

.page-hero h1 {
  text-align: center;
  margin: 0 auto;
}

/* ── ACCORDION ── */
.section--accordion {
  padding-top: 0;
}

.accordion {
  margin-bottom: 0.75rem;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, #3aaee0 0%, #0984c3 50%, #076a9c 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  transition: background-position 0.3s ease;
  position: relative;
  z-index: 1;
}

.accordion__header:hover {
  background-position: 100% 50%;
}

.accordion__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion__icon::before {
  top: 50%;
  left: 2px;
  right: 2px;
  height: 2px;
  transform: translateY(-50%);
}

.accordion__icon::after {
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 2px;
  transform: translateX(-50%);
}

.accordion__header[aria-expanded="true"] .accordion__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion__body {
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__body[hidden] {
  display: block;
  max-height: 0;
  visibility: hidden;
}

.accordion__body:not([hidden]) {
  max-height: 1000px;
  visibility: visible;
  margin-top: -1.5rem;
  position: relative;
  z-index: 0;
}

.accordion__content {
  background: var(--bg-light);
  border-radius: 0 0 16px 16px;
  padding: 1.5rem 1.75rem;
  padding-top: 2.5rem;
  font-size: 1.1875rem;
  font-weight: 300;
}

.accordion__content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.accordion__content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.accordion__content li:last-child {
  margin-bottom: 0;
}

/* ── CONTACT INFO ── */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
}

.contact-info__item a {
  color: var(--primary);
}

/* ── CONTACT FORM ── */
.section--form {
  padding-top: 0;
}

.contact-form {
  margin-bottom: 2rem;
}

.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  transition: border-color var(--duration), box-shadow var(--duration);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(9, 132, 195, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-pflicht {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: right;
  margin-bottom: 1rem;
}

.form-group--checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
  -webkit-appearance: checkbox;
  appearance: checkbox;
  padding: 0;
}

/* Validierung: Fehlerzustand */
.form-group--error input,
.form-group--error select,
.form-group--error textarea {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(209, 10, 17, 0.12);
}

.form-group--error label {
  color: var(--accent-red);
}

.form-error-msg {
  display: block;
  font-size: 0.8125rem;
  color: var(--accent-red);
  margin-top: 0.25rem;
}

.form-group--checkbox.form-group--error label {
  color: var(--accent-red);
}

.form-group--checkbox .form-error-msg {
  flex-basis: 100%;
  margin-top: 0.25rem;
}

.form-group--checkbox label {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 0;
  cursor: pointer;
}

.form-datenschutz {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-datenschutz strong {
  font-weight: 500;
  color: var(--text);
}

@media (min-width: 640px) {
  .form-row--half {
    flex-direction: row;
  }
  .form-row--half .form-group {
    flex: 1;
  }
}

/* ── SECTIONS ── */
.section {
  padding: 4rem 0;
}

.section--services {
  background: var(--bg-light);
  padding: 4rem 0;
}

/* ── MEDIA-TEXT ── */
.media-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.media-text__image {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.media-text__image img {
  border-radius: var(--radius);
}

.media-text__image--no-radius {
  border-radius: 0;
  overflow: visible;
}

.media-text__image--no-radius img,
.media-text__image--no-radius picture {
  border-radius: 0;
}

.media-text__body {
  width: 100%;
}

.media-text__body h2,
.media-text__body h3 {
  margin-bottom: 1rem;
}

/* Gallery items: weniger Abstand zwischen Projekten */
.section--gallery-item {
  padding: 2.5rem 0;
}

/* ── SERVICE CARDS ── */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  border: 2px solid var(--accent-yellow);
  transition: transform var(--duration), box-shadow var(--duration);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: var(--white);
}

.service-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card__image picture,
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(40, 40, 42, 0.68);
  pointer-events: none;
  transition: background 0.3s ease;
}

.service-card:hover .service-card__image::after {
  background: rgba(40, 40, 42, 0.55);
}


.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 1;
}

.service-card__content h3 {
  color: var(--white);
  margin-bottom: 0.25rem;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
}

/* ── TRUST LIST ── */
.trust-list {
  list-style: none;
  padding: 0;
}

.trust-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

.trust-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-address,
.footer-nav-wrap {
  padding-left: 60px;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-address p {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-address a {
  color: rgba(255, 255, 255, 0.85);
}
.footer-address a:hover {
  color: var(--primary);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-nav a {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--accent-yellow);
}

.footer-nav a[aria-current="page"] {
  color: var(--accent-yellow);
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-light);
  opacity: 0.6;
  margin-top: 1.5rem;
}

/* ── RESPONSIVE: TABLET (640px) ── */
@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── RESPONSIVE: LAPTOP (768px) ── */
@media (min-width: 768px) {
  .media-text {
    flex-direction: row;
  }

  .media-text__image {
    width: 50%;
    flex-shrink: 0;
  }

  .media-text__body {
    width: 50%;
  }

  .media-text--reverse {
    flex-direction: row-reverse;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-nav-wrap {
    text-align: right;
    padding-left: 0;
  }

  .footer-nav {
    justify-content: flex-end;
  }

}

/* ── RESPONSIVE: DESKTOP (1024px) ── */
@media (min-width: 1024px) {
  .main-nav {
    display: block;
  }

  .header-cta {
    display: inline-block;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  /* 3+2 Layout: 6-Spalten-Grid, 3 oben zentriert, 2 unten zentriert */
  .service-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }

  .service-card:nth-child(1) { grid-column: 1 / 3; }
  .service-card:nth-child(2) { grid-column: 3 / 5; }
  .service-card:nth-child(3) { grid-column: 5 / 7; }
  .service-card:nth-child(4) { grid-column: 2 / 4; }
  .service-card:nth-child(5) { grid-column: 4 / 6; }

  .section {
    padding: 5rem 0;
  }

  .section--services {
    padding: 5rem 0;
  }

  .hero-content {
    max-width: 750px;
  }

  h1 {
    font-size: 3rem;
  }
}

/* ── LEGAL PAGES ── */
.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.legal-content p:first-child {
  color: var(--text);
  font-size: 1.05rem;
}

.legal-content a {
  color: var(--blue);
}

.legal-content {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.legal-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.legal-content h4 {
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
}

.legal-content ul {
  margin: 0.75rem 0 1rem 1.25rem;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--blue);
  word-break: break-all;
}

.legal-content a:hover {
  text-decoration: underline;
}
