/* WILDERKIDS LTD — style v2
   Premium minimalism + Neumorphism
   Warm light palette, soft shadows, centered layout */

:root {
  --clr-bg: #f5f0eb;
  --clr-bg-alt: #ebe5de;
  --clr-surface: #f5f0eb;
  --clr-dark: #1e1e1e;
  --clr-text: #2c2c2c;
  --clr-text-soft: #6b6b6b;
  --clr-accent: #2d5a4a;
  --clr-accent-light: #3d7a64;
  --clr-white: #ffffff;
  --clr-border: #e0dbd5;

  --font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;

  --shadow-neu-out: 6px 6px 14px rgba(0,0,0,.07), -6px -6px 14px rgba(255,255,255,.8);
  --shadow-neu-in: inset 4px 4px 10px rgba(0,0,0,.05), inset -4px -4px 10px rgba(255,255,255,.7);
  --shadow-soft: 0 4px 20px rgba(0,0,0,.06);
  --shadow-lift: 0 12px 32px rgba(0,0,0,.1);

  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 80px;
  --container: 1100px;
  --gap: 32px;
  --section-py: 80px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.7;
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--clr-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow .3s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--clr-dark) !important;
}
.logo-link:hover { text-decoration: none; color: var(--clr-accent) !important; }

.nav-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 8px;
}

.nav-list a {
  display: block;
  padding: 10px 18px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  transition: background .25s, color .25s;
}
.nav-list a:hover {
  background: var(--clr-bg-alt);
  color: var(--clr-accent);
  text-decoration: none;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  width: 22px; height: 2px;
  background: var(--clr-dark);
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-list {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--clr-bg);
    flex-direction: column;
    padding: 32px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .3s;
    overflow-y: auto;
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list li a {
    padding: 16px 0;
    border-bottom: 1px solid var(--clr-border);
    border-radius: 0;
  }
}

/* ===== HERO ===== */
.hero {
  padding: calc(var(--header-h) + 60px) 24px 80px;
  text-align: center;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 28px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: var(--clr-bg-alt);
  border-radius: 40px;
  box-shadow: var(--shadow-neu-out);
}

.hero h1 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--clr-dark);
}

.hero-lead {
  margin: 0 auto 40px;
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--clr-text-soft);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none !important;
  font-family: inherit;
}

.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--clr-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-secondary {
  background: var(--clr-surface);
  color: var(--clr-text);
  box-shadow: var(--shadow-neu-out);
}
.btn-secondary:hover {
  box-shadow: var(--shadow-neu-in);
  transform: translateY(0);
}

.hero-image {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-image img {
  width: 100%;
  display: block;
}

/* ===== SECTIONS ===== */
section {
  padding: var(--section-py) 24px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--clr-dark);
}

.section-header p {
  margin: 0;
  color: var(--clr-text-soft);
}

.section-alt {
  background: var(--clr-bg-alt);
}

.section-dark {
  background: var(--clr-dark);
  color: var(--clr-white);
}
.section-dark .section-header h2 { color: var(--clr-white); }
.section-dark .section-header p { color: rgba(255,255,255,.7); }

/* ===== FEATURES GRID (Neumorphic cards) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  max-width: var(--container);
  margin: 0 auto;
}

.feature-card {
  padding: 32px 28px;
  background: var(--clr-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-neu-out);
  transition: box-shadow .3s, transform .3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-dark);
}
.feature-card p {
  margin: 0;
  font-size: .95rem;
  color: var(--clr-text-soft);
  line-height: 1.6;
}

/* ===== TWO COLUMN ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-text h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--clr-dark);
}
.two-col-text p {
  margin: 0 0 16px;
  color: var(--clr-text-soft);
}

.two-col-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-neu-out);
}

@media (max-width: 768px) {
  .two-col, .two-col.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
  .two-col-image { order: -1; }
}

/* ===== TABS SECTION ===== */
.tabs-wrap {
  max-width: var(--container);
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  font-size: .95rem;
  font-weight: 600;
  background: var(--clr-surface);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-neu-out);
  transition: box-shadow .2s, background .2s, color .2s;
  font-family: inherit;
  color: var(--clr-text);
}
.tab-btn:hover {
  background: var(--clr-bg-alt);
}
.tab-btn.active {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: var(--shadow-soft);
}

.tab-panel {
  display: none;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 32px;
  background: var(--clr-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-neu-out);
}
.tab-panel.active { display: block; }

.tab-panel h3 {
  margin: 0 0 16px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-dark);
}
.tab-panel p {
  margin: 0;
  color: var(--clr-text-soft);
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-section h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--clr-dark);
}
.cta-section p {
  margin: 0 0 32px;
  color: var(--clr-text-soft);
}

/* ===== CONTACT FORM ===== */
.form-block {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px;
  background: var(--clr-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-neu-out);
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--clr-text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--clr-bg);
  box-shadow: var(--shadow-neu-in);
  transition: box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: var(--shadow-neu-in), 0 0 0 2px var(--clr-accent);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--clr-border);
}
.contact-info p {
  margin: 0 0 8px;
  font-size: .95rem;
  color: var(--clr-text-soft);
}
.contact-info strong {
  color: var(--clr-dark);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.8);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  margin: 0 0 20px;
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-white);
}
.footer-col p, .footer-col address {
  margin: 0 0 10px;
  font-size: .95rem;
  font-style: normal;
  line-height: 1.6;
}
.footer-col a {
  color: rgba(255,255,255,.8);
}
.footer-col a:hover {
  color: var(--clr-white);
}

.footer-nav {
  list-style: none;
  margin: 0; padding: 0;
}
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { color: rgba(255,255,255,.8); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .9rem;
  color: rgba(255,255,255,.5);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 20px 24px;
  background: var(--clr-dark);
  color: var(--clr-white);
  display: none;
}
.cookie-banner.show {
  display: block;
  animation: slideUp .4s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 240px;
  font-size: .95rem;
}
.cookie-banner a {
  color: var(--clr-accent-light);
}
.cookie-banner .btn {
  padding: 10px 22px;
  background: var(--clr-accent);
  color: var(--clr-white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
}
.cookie-banner .btn:hover {
  background: var(--clr-accent-light);
}

/* ===== INNER PAGES ===== */
.page-main {
  padding-top: var(--header-h);
  min-height: 100vh;
}

.page-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 24px;
}
.page-content h1 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--clr-dark);
}
.page-content h2 {
  margin: 40px 0 16px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-dark);
}
.page-content p, .page-content li {
  margin: 0 0 14px;
  color: var(--clr-text-soft);
  line-height: 1.7;
}
.page-content ul {
  padding-left: 24px;
  margin: 0 0 20px;
}
.page-content a { color: var(--clr-accent); }

.last-updated {
  font-size: .9rem;
  color: var(--clr-text-soft);
  margin-bottom: 32px;
}

.thanks-block {
  text-align: center;
  padding: 100px 24px;
}
.thanks-block h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--clr-dark);
}
.thanks-block p {
  margin: 0 0 28px;
  color: var(--clr-text-soft);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }

/* ===== DECORATIVE ELEMENTS ===== */
.decor-line {
  display: block;
  width: 60px;
  height: 3px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-light));
  border-radius: 2px;
}

.decor-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--clr-border) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}

/* ===== ENHANCED HERO ===== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 24px 100px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(45,90,74,.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 10px 24px;
  margin-bottom: 32px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: var(--clr-bg-alt);
  border-radius: 40px;
  box-shadow: var(--shadow-neu-out);
}

.hero h1 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-dark);
}

.hero-lead {
  margin: 0 auto 48px;
  max-width: 640px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--clr-text-soft);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-image {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
  pointer-events: none;
}

/* ===== STAT COUNTER (optional enhancement) ===== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--clr-accent);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: .9rem;
  color: var(--clr-text-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
  position: relative;
  height: 1px;
  max-width: 200px;
  margin: 0 auto 48px;
  background: var(--clr-border);
}

.section-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ===== ENHANCED FEATURE CARDS ===== */
.feature-card {
  position: relative;
  padding: 36px 32px;
  background: var(--clr-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-neu-out);
  transition: box-shadow .35s, transform .35s;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--clr-accent);
  transition: height .35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.feature-card:hover::before {
  height: 100%;
}

/* ===== PULSE EFFECT FOR CTA ===== */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45,90,74,.4); }
  50% { box-shadow: 0 0 0 12px rgba(45,90,74,0); }
}

.btn-primary.pulse {
  animation: pulse 2s infinite;
}

/* ===== TESTIMONIAL / QUOTE BLOCK ===== */
.quote-block {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--clr-text);
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  color: var(--clr-border);
  line-height: 1;
  z-index: 0;
}

.quote-block p {
  position: relative;
  z-index: 1;
}

/* ===== SCROLL PROGRESS INDICATOR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-light));
  z-index: 9999;
  transition: width .1s linear;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap);
  max-width: var(--container);
  margin: 0 auto;
}

.testimonial-card {
  padding: 32px;
  background: var(--clr-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-neu-out);
  transition: transform .3s, box-shadow .3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.testimonial-text {
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--clr-text);
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -8px;
  font-size: 3rem;
  color: var(--clr-accent);
  opacity: .2;
  font-family: var(--font-display);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 1rem;
  color: var(--clr-dark);
}

.testimonial-author span {
  font-size: .9rem;
  color: var(--clr-text-soft);
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  background: var(--clr-surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-neu-out);
  overflow: hidden;
  transition: box-shadow .3s;
}

.faq-item:hover {
  box-shadow: var(--shadow-soft);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-dark);
  text-align: left;
  transition: background .2s, color .2s;
}

.faq-question:hover {
  background: var(--clr-bg-alt);
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--clr-accent);
  background: var(--clr-bg-alt);
  border-radius: 50%;
  transition: transform .3s, background .3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-accent);
  color: var(--clr-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--clr-text-soft);
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-question {
    padding: 16px 20px;
    font-size: .95rem;
  }
  
  .faq-answer p {
    padding: 0 20px 20px;
  }
}
