:root {
  --bg: #f6fbf4;
  --surface: #ffffff;
  --text: #102018;
  --text-soft: #31483a;
  --muted: #64786b;
  --green: #1fa463;
  --green-dark: #127544;
  --green-deep: #064b33;
  --green-light: #76daa0;
  --green-pale: #dcfce7;
  --border: rgba(31, 164, 99, 0.16);
  --border-strong: rgba(31, 164, 99, 0.3);
  --shadow-sm: 0 10px 30px rgba(19, 86, 50, 0.08);
  --shadow-md: 0 18px 55px rgba(19, 86, 50, 0.13);
  --shadow-lg: 0 28px 90px rgba(19, 86, 50, 0.18);
  --radius-xl: 36px;
  --radius-md: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(118, 218, 160, 0.42), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(220, 252, 231, 0.95), transparent 34rem),
    linear-gradient(180deg, #fbfff9 0%, #f6fbf4 45%, #eff8ef 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 1000;
  background: var(--green-dark);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 255, 249, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -0.045em;
  font-size: 1.42rem;
  color: var(--text);
  white-space: nowrap;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  box-shadow: 0 12px 32px rgba(31, 164, 99, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 800;
  font-size: 0.94rem;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
  background: var(--green-pale);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 950;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 14px 34px rgba(31, 164, 99, 0.26);
}

.btn-ghost {
  color: var(--green-dark);
  background: #ffffff;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #ffffff;
  color: var(--green-dark);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.hero {
  padding: 86px 0 66px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  color: var(--green-dark);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.85rem;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
  max-width: 820px;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green-deep), var(--green), #58c985);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  max-width: 690px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.trust-row,
.pillars-grid,
.article-grid,
.seo-grid,
.social-grid,
.faq-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.trust-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-item,
.pillar-card,
.article-card,
.seo-card,
.social-card,
.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.trust-item {
  padding: 16px;
}

.trust-item strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 3px;
}

.trust-item span,
.pillar-card p,
.article-content p,
.seo-card p,
.social-card p,
.faq-item p,
.section-subtitle {
  color: var(--muted);
}

.hero-panel {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(118, 218, 160, 0.4), transparent 24rem),
    linear-gradient(145deg, #ffffff, #eef9ef);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 28px;
}

.search-preview,
.social-preview-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.search-preview {
  padding: 22px;
}

.search-bar {
  background: #f2faf2;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 18px;
}

.result-card {
  border-left: 4px solid var(--green);
  padding-left: 16px;
}

.result-url {
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.result-title {
  color: #1a0dab;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 850;
  margin: 4px 0 6px;
}

.social-preview-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 30px;
  overflow: hidden;
}

.social-cover {
  height: 190px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.social-cover-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 950;
}

.social-cover h3 {
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.social-meta {
  padding: 18px;
}

.social-meta span {
  color: var(--muted);
}

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 950;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.07em;
  max-width: 780px;
}

.pillars-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pillar-card,
.seo-card,
.social-card,
.faq-item {
  padding: 22px;
}

.pillar-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.pillar-card h3,
.article-content h3,
.seo-card h3,
.social-card h3,
.faq-item h3 {
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 9px;
}

.mini-link,
.read-link {
  color: var(--green);
  font-weight: 950;
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card {
  overflow: hidden;
  transition: 0.25s ease;
}

.article-card:hover,
.pillar-card:hover,
.seo-card:hover,
.social-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.article-image {
  height: 170px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.7), transparent 8rem),
    linear-gradient(135deg, #1fa463, #88e5aa);
  display: flex;
  align-items: end;
  padding: 16px;
}

.tag {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.article-content {
  padding: 20px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.seo-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 950;
  margin-bottom: 18px;
}

.social-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.platform {
  font-weight: 950;
  font-size: 1.15rem;
}

.format-badge {
  color: var(--green-dark);
  background: var(--green-pale);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 950;
}

.copy-box {
  border: 1px solid var(--border);
  background: #f8fff8;
  border-radius: 16px;
  padding: 12px;
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 14px 0;
}

.copy-btn {
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background: var(--green-dark);
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 900;
}

.site-footer {
  padding: 44px 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
}

.footer-grid {
  grid-template-columns: 1.3fr repeat(3, 1fr);
}

.footer-grid h4 {
  color: var(--text);
  margin-bottom: 12px;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.legal-note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  background: var(--text);
  color: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  transform: translateY(140%);
  transition: transform 0.3s ease;
  font-weight: 900;
}

.toast.show {
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .pillars-grid,
  .article-grid,
  .seo-grid,
  .social-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 560px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 54px;
  }

  .trust-row,
  .pillars-grid,
  .article-grid,
  .seo-grid,
  .social-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-subtitle {
    margin-top: 12px;
  }

  .hero-panel {
    min-height: 600px;
    padding: 18px;
  }

  .social-preview-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .social-cover {
    height: 170px;
  }

  .social-cover h3 {
    font-size: 1.6rem;
  }

  .btn,
  .copy-btn {
    width: 100%;
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-description-short {
  max-width: 560px;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.compact-trust-row .trust-item {
  padding: 14px 16px;
}

.compact-trust-row .trust-item strong {
  font-size: 1.05rem;
}

.compact-trust-row .trust-item span {
  font-size: 0.9rem;
}

.simple-hero-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 14px;
}

.simple-hero-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.simple-social-preview {
  bottom: 34px;
}
}
.hero {
  overflow: hidden;
}

.hero > .container.hero-grid {
  width: auto;
  max-width: none;
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  margin-right: 24px;
  grid-template-columns: minmax(620px, 780px) minmax(420px, 520px);
  justify-content: space-between;
  gap: clamp(40px, 5vw, 90px);
}

.hero-copy {
  max-width: 780px;
  justify-self: start;
  text-align: left;
}

.hero h1 {
  max-width: 780px;
}

.hero-description-short {
  max-width: 620px;
}

.hero-panel {
  width: min(520px, 100%);
  justify-self: end;
}

.simple-hero-card {
  max-width: 100%;
}

.simple-social-preview {
  left: 28px;
  right: 28px;
  bottom: 34px;
}

@media (max-width: 980px) {
  .hero > .container.hero-grid {
    width: min(var(--max), calc(100% - 40px));
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy,
  .hero h1,
  .hero-description-short {
    max-width: 100%;
  }

  .hero-panel {
    width: 100%;
    justify-self: stretch;
  }
}
/* Hero final: linker Bereich weiter nach links, breiter, weniger Lücke zur rechten Box */
.hero > .container.hero-grid {
  width: calc(100vw - 64px);
  max-width: none;
  margin-left: 32px;
  margin-right: 32px;

  grid-template-columns: minmax(760px, 1fr) minmax(420px, 500px);
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
}

.hero-copy {
  max-width: 960px;
  justify-self: start;
  text-align: left;
}

.hero h1 {
  max-width: 960px;
}

.hero-description,
.hero-description-short {
  max-width: 760px;
}

.hero-buttons {
  justify-content: flex-start;
}

.trust-row.compact-trust-row {
  max-width: 900px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-panel {
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

/* Auf sehr großen Bildschirmen nicht zu extrem breit werden */
@media (min-width: 1500px) {
  .hero > .container.hero-grid {
    width: min(1440px, calc(100vw - 80px));
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: minmax(780px, 1fr) 500px;
  }
}

/* Tablet */
@media (max-width: 1180px) {
  .hero > .container.hero-grid {
    width: min(var(--max), calc(100% - 40px));
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy,
  .hero h1,
  .hero-description,
  .hero-description-short {
    max-width: 100%;
  }

  .hero-panel {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero > .container.hero-grid {
    width: min(100% - 28px, var(--max));
  }

  .trust-row.compact-trust-row {
    grid-template-columns: 1fr;
  }
}
/* Sauberes Desktop-Dropdown-Menü */
.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 800;
  font-size: 0.94rem;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links > li:hover > a,
.nav-links > li:focus-within > a,
.nav-links > li.current-menu-item > a,
.nav-links > li.current-menu-ancestor > a {
  color: var(--green-dark);
  background: var(--green-pale);
}

/* kleiner Pfeil bei Menüpunkten mit Untermenü */
.nav-links .menu-item-has-children > a::after {
  content: "⌄";
  font-size: 0.85rem;
  line-height: 1;
  transform: translateY(-1px);
  opacity: 0.75;
}

/* Dropdown verstecken */
.nav-links .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 99;

  min-width: 230px;
  padding: 10px;
  list-style: none;

  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;

  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* Dropdown anzeigen bei Hover */
.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* kleine unsichtbare Brücke, damit Dropdown nicht flackert */
.nav-links .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  top: -14px;
  width: 100%;
  height: 14px;
}

/* Links im Dropdown */
.nav-links .sub-menu li {
  width: 100%;
}

.nav-links .sub-menu a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;

  color: var(--text-soft);
  font-size: 0.93rem;
  font-weight: 800;
  white-space: nowrap;

  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links .sub-menu a:hover,
.nav-links .sub-menu a:focus {
  color: var(--green-dark);
  background: var(--green-pale);
  transform: translateX(3px);
}

/* Dropdown rechts ausrichten, falls es am Bildschirmrand eng wird */
.nav-links > li:last-child .sub-menu,
.nav-links > li:nth-last-child(2) .sub-menu {
  left: auto;
  right: 0;
}

/* Mobile Menü mit Unterpunkten sauber darstellen */
@media (max-width: 980px) {
  .nav-links {
    gap: 4px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links > li > a {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
  }

  .nav-links .sub-menu {
    position: static;
    min-width: 100%;
    margin: 4px 0 8px;
    padding: 6px;

    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;

    background: #f6fbf4;
    border-radius: 14px;
    box-shadow: none;
    border: 1px solid var(--border);
  }

  .nav-links .sub-menu::before {
    display: none;
  }

  .nav-links .sub-menu a {
    padding: 10px 12px 10px 22px;
    font-size: 0.9rem;
  }
}
/* Header Dropdown final */
.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 800;
  font-size: 0.94rem;
}

.nav-links > li:hover > a,
.nav-links > li:focus-within > a,
.nav-links > li.current-menu-item > a,
.nav-links > li.current-menu-ancestor > a {
  color: var(--green-dark);
  background: var(--green-pale);
}

.nav-links .menu-item-has-children > a::after {
  content: "⌄";
  font-size: 0.85rem;
  opacity: 0.75;
}

.nav-links .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 999;
  min-width: 230px;
  padding: 10px;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-links .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  top: -14px;
  width: 100%;
  height: 14px;
}

.nav-links .sub-menu a {
  display: flex;
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--text-soft);
  font-size: 0.93rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links .sub-menu a:hover,
.nav-links .sub-menu a:focus {
  color: var(--green-dark);
  background: var(--green-pale);
}

@media (max-width: 980px) {
  .nav-links li {
    width: 100%;
  }

  .nav-links > li > a {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    min-width: 100%;
    margin: 4px 0 8px;
    padding: 6px;
    background: #f6fbf4;
    box-shadow: none;
  }

  .nav-links .sub-menu a {
    padding-left: 22px;
  }
}