.hg-reinigung {
  --hg-bg: #ffffff;
  --hg-bg-alt: #f8f8f8;
  --hg-primary: var(--hg-primary, #1f7a8c);
  --hg-text: #222222;
  --hg-muted: #777777;
  --hg-radius-card: 16px;
  --hg-shadow-soft: 0 10px 25px rgba(0,0,0,0.06);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--hg-text);
  background: #f3f4f6;
  margin: 0;
}

a {
  color: var(--hg-primary);
}

a:hover {
  text-decoration: underline;
}

/* Header & Navigation */
.hg-header {
  background: #ffffff;
  border-radius: 18px;
  margin: 16px auto 24px;
  max-width: 1100px;
  box-shadow: var(--hg-shadow-soft);
}

.hg-header-inner {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.hg-logo-wrap {
  display: flex;
  align-items: center;
}

.hg-logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--hg-text);
}

.hg-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hg-nav-list {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.hg-nav-list li a {
  font-size: 0.95rem;
  color: var(--hg-text);
  text-decoration: none;
}
.hg-nav-list li a:hover {
  color: var(--hg-primary);
}

/* Mobile nav toggle: burger + label */
.hg-nav-toggle {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  text-align: center;
  min-width: auto;
  height: auto;
  margin-left: 8px;
}



.hg-burger {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hg-burger span {
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: #111827;
  display: block;
}


.hg-nav-toggle-label {
  font-size: 0.85rem;
  white-space: nowrap;
  line-height: 1;
  font-size: 0.85rem;
  color: var(--hg-text);
}

/* Hero & main layout */
.hg-main {
  max-width: 1100px;
  margin: 0 auto 40px;
}

.hg-hero-section {
  max-width: 1100px;
  margin: 0 auto;
}

.hg-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px 40px;
  text-align: center;
}

.hg-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.hg-hero p {
  margin: 0 0 24px;
  font-size: 1rem;
  color: var(--hg-muted);
}

.hg-btn-primary {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  background: var(--hg-primary);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.hg-btn-primary:hover {
  background: #155261;
  text-decoration: none;
}

/* Sections */
.hg-section {
  padding: 40px 20px;
}

.hg-section-alt {
  background: var(--hg-bg-alt);
  border-radius: 18px;
  margin-top: 16px;
}

.hg-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hg-section h2 {
  margin-top: 0;
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.hg-section-intro {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--hg-muted);
}

/* Grid & cards */
.hg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.hg-card {
  background: #ffffff;
  border-radius: var(--hg-radius-card);
  padding: 20px;
  border: 1px solid #e0e0e0;
  box-shadow: var(--hg-shadow-soft);
  text-align: left;
  color: var(--hg-text);
}

.hg-card svg {
  display: block;
  margin-bottom: 12px;
  color: var(--hg-primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hg-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.hg-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--hg-muted);
}

/* Quotes */
.hg-card-quote {
  text-align: center;
}

.hg-card-quote .hg-icon-wrap {
  margin-bottom: 10px;
}

.hg-card-quote .hg-quote {
  font-style: italic;
  color: var(--hg-text);
  margin-bottom: 6px;
}

.hg-card-quote .hg-quote-author {
  font-size: 0.9rem;
  color: var(--hg-muted);
}

/* Footer */
.hg-footer {
  background: #111827;
  color: #e5e7eb;
  padding: 20px;
}

.hg-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9rem;
}

.hg-footer-links a {
  color: #e5e7eb;
  text-decoration: none;
}

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

/* Cookie banner */
.hg-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #e5e7eb;
  border-radius: 12px;
  box-shadow: var(--hg-shadow-soft);
  padding: 12px 16px;
  font-size: 0.9rem;
  display: none;
  z-index: 9999;
}

.hg-cookie-banner.visible {
  display: block;
}

.hg-cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.hg-cookie-inner p {
  margin: 0;
  flex: 1 1 200px;
}

.hg-cookie-actions {
  display: flex;
  gap: 8px;
}

.hg-cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  cursor: pointer;
}

.hg-cookie-accept {
  background: var(--hg-primary);
  color: #ffffff;
}

.hg-cookie-decline {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid #4b5563;
}

/* Responsiveness */
@media (max-width: 768px) {
  .hg-header-inner {
    align-items: center;
  }

  .hg-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    display: none;
    padding: 10px 20px 16px;
    z-index: 10;
  }

  .hg-nav.open {
    display: block;
  }

  .hg-nav-list {
    flex-direction: column;
  }

  .hg-nav-toggle {
  justify-content: center;
    display: flex;
  }

  .hg-hero {
    padding-top: 16px;
  }

  .hg-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hg-section {
    padding: 32px 16px;
  }
}
