css
/* =========================================================
   RESET
========================================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f4f7f7;
  font-family: Arial, sans-serif;
  color: #243746;
}

/* =========================================================
   CONTAINER
========================================================= */
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   HEADER
========================================================= */
#header {
  background: #63c7c0;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* NAVIGATION */
#header ul {
  list-style: none;
  margin: 0;
  padding: 15px 0;
  text-align: center;
}

#header ul li {
  display: inline-block;
  margin: 0 10px;
}

/* LINKS */
#header ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  display: inline-block;
}

/* HOVER */
#header ul li a:hover {
  background: rgba(255,255,255,0.2);
}

/* AKTIVER MENÜPUNKT */
#header ul li a.active,
#header ul li.active a,
#header ul li a[aria-current="page"] {
  background: #ffffff;
  color: #63c7c0;
}

/* =========================================================
   LAYOUT
========================================================= */
.layout {
  display: flex;
  gap: 30px;
}

/* SIDEBAR */
#sidebar {
  width: 280px;
}

#sidebar:empty {
  display: none;
}

/* CONTENT */
#content {
  flex: 1;
}

/* BOXEN */
#content > * {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 12px;
}

/* =========================================================
   TEXT
========================================================= */
h1, h2, h3 {
  color: #1f3442;
  margin-top: 0;
}

p {
  line-height: 1.6;
}

/* =========================================================
   BILDER
========================================================= */
img {
  max-width: 100%;
  border-radius: 12px;
}

/* =========================================================
   BUTTONS
========================================================= */
button,
input[type="submit"] {
  background: #63c7c0;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #4bb5ad;
}

/* =========================================================
   FOOTER
========================================================= */
#footer {
  background: #24414f;
  color: white;
  margin-top: 40px;
}

#footer .inner {
  padding: 20px;
  text-align: center;
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  #sidebar {
    width: 100%;
  }

  #header ul li {
    display: block;
    margin: 8px 0;
  }
}
/* 🔥 HINTERGRUND KOMPLETT ENTFERNEN */
body {
  background: #f4f7f7 !important;
  background-image: none !important;
}

/* ALLE TEMPLATE-HINTERGRÜNDE KILLEN */
#container,
#main,
#header,
body::before,
body::after {
  background-image: none !important;
}

/* FALLS TEMPLATE EIN WRAPPER MIT BILD HAT */
div[class*="background"],
div[class*="hero"],
section[class*="background"] {
  background: none !important;
  background-image: none !important;
}
/* AKTIVER LINK PER URL */
body[data-page="home"] #header a[href="/"] {
  background: #ffffff !important;
  color: #63c7c0 !important;
}

body[data-page="leistungen-produkte"] #header a[href*="leistungen"] {
  background: #ffffff !important;
  color: #63c7c0 !important;
}

body[data-page="ueber-uns"] #header a[href*="ueber"] {
  background: #ffffff !important;
  color: #63c7c0 !important;
}

body[data-page="fuer-zahnaerzte-partner"] #header a[href*="zahnaerzte"] {
  background: #ffffff !important;
  color: #63c7c0 !important;
}

body[data-page="kontakt-anfrage"] #header a[href*="kontakt"] {
  background: #ffffff !important;
  color: #63c7c0 !important;
}