a {
  font-size: 16px;
  line-height: 22px;
}

button,
input[type="submit"],
.btn,
.wpcf7-submit {
  text-transform: none !important;
}

/* Grundlayout erzwingen */

.wpcf7 form.wpcf7-form * {
  box-sizing: border-box;
}

.wpcf7 .row,
.wpcf7 .column {
  display: block !important;
  width: 100% !important;
}

/* Felder halbtransparent wie „Vollständiger Name“ */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
  background-color: rgba(0,0,0,0.15) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px !important;
  width: 100% !important;
  color: #222;
  /* bei hellem Hintergrund gut lesbar */
}

/* Placeholder heller */

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(0,0,0,0.5) !important;
}

/* Abstände */

.wpcf7 p,
.wpcf7 .wpcf7-form-control-wrap {
  margin-bottom: 16px !important;
}

/* Button immer orange, keine Theme-Overrides */

.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  background-color: #ff7a00 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 14px 22px !important;
  font-weight: 700;
  cursor: pointer;
  text-transform: none !important;
  box-shadow: 0 6px 0 rgba(0,0,0,0.15);
  transition: background-color .2s ease, transform .02s ease;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #e66a00 !important;
}

.wpcf7 input[type="submit"]:active {
  transform: translateY(1px);
}

/* Dropdown-Pfeil nicht überlagern */

.wpcf7 select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Abschnitt-Grundstil */

.usp-section {
  background: #18283a;
  /* dunkles Blau */
  color: #fff;
  padding: 64px 20px;
}

.usp-wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.usp-wrap h2 {
  margin: 0 0 28px;
  font-size: clamp(28px,4vw,44px);
  line-height: 1.2;
  font-weight: 800;
}

/* 2-Spalten-Layout */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 24px 64px;
  margin-bottom: 36px;
  text-align: left;
}

/* Liste + Fix gegen vertikale Schrift vom Theme */

.usp-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.usp-list li,
.usp-list li * {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  white-space: normal;
}

.usp-list li {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: clamp(16px,2.4vw,24px);
  line-height: 1.35;
  margin: 14px 0;
}

/* Icon (SVG erbt die Textfarbe) */

.usp-list .icon {
  width: 24px;
  height: 24px;
  color: #fff;
  flex-shrink: 0;
  display: inline-block;
}

.usp-list .icon svg {
  width: 100%;
  height: 100%;
}

/* Button mittig in #3781c3 */

.usp-btn {
  display: inline-block;
  background: #3781c3;
  color: #fff;
  font-weight: 700;
  font-size: clamp(16px,2.2vw,20px);
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .05s ease, filter .2s ease;
  margin: 0 auto;
}

.usp-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Responsive */

@media (max-width:820px) {
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}

/* === USP Abschnitt – Fixes === */

.usp-section {
  background: #18283a;
  color: #fff;
  padding: 64px 20px;
}

.usp-section .usp-wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* 1) Headline weiß erzwingen */

.usp-section h2 {
  margin: 0 0 28px;
  font-size: clamp(28px,4vw,44px);
  line-height: 1.2;
  font-weight: 800;
  color: #fff !important;
  /* überschreibt Theme-Farbe */
}

/* 2-Spalten-Layout */

.usp-section .usp-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 24px 64px;
  margin-bottom: 36px;
  text-align: left;
}

/* Listen-Basis + Schreibrichtung-Fix gegen Theme-Effekte */

.usp-section .usp-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.usp-section .usp-list li,
.usp-section .usp-list li * {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  white-space: normal;
}

/* 3) Häkchen-Icons per CSS (kein Plugin/HTML nötig) */

.usp-section .usp-list li {
  position: relative;
  display: block !important;
  padding-left: 42px;
  /* Platz für Icon links */
  margin: 14px 0;
  font-size: clamp(16px,2.4vw,24px);
  line-height: 1.35;
  color: #fff;
}

.usp-section .usp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.75);
  opacity: 0.95;
}

.usp-section .usp-list li::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  width: 8px;
  height: 14px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-55%) rotate(45deg);
}

/* 4) Button mittig + in #3781c3 mit weißer Schrift */

.usp-section .usp-btn {
  display: inline-block;
  background: #3781c3;
  color: #fff !important;
  /* überschreibt Theme-Linkfarbe */
  font-weight: 700;
  font-size: clamp(16px,2.2vw,20px);
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .05s ease, filter .2s ease;
  margin: 18px auto 0;
}

.usp-section .usp-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Responsiv */

@media (max-width:820px) {
  .usp-section .usp-grid {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}

.sc_layouts_menu_nav>li ul {
  width: 300px;
}

.sc_icons .sc_icons_item>* {
  font-size: 34px;
}

.post_meta_item.post_date.date.updated {
  display: none;
}