/* ==========================================================================
   WISDOM WALK COUNSELING SERVICES - UNIFIED DESIGN SYSTEM
   ========================================================================== */

/* ── RESET & BASE STYLES ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --forest:      #1a2f22;
  --forest-deep: #111d16;
  --sage:        #4a7c59;
  --sage-mist:   #e8f1ea;
  --cream:       #faf7f2;
  --sand:        #f0ebe0;
  --gold:        #c08030;
  --text:        #1c2820;
  --muted:       #6b7a6e;

  /* Semantic tokens: equal to their light-mode source by default,
     redefined under [data-theme="dark"] below so components using
     them adapt automatically without per-component overrides. */
  --heading:     var(--forest);
  --surface:     #ffffff;
  --hairline:    rgba(0,0,0,0.06);
  --hairline-2:  rgba(0,0,0,0.1);

  --ff-d: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'Inter', system-ui, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --border-radius: 16px;
}

/* ── DARK MODE ── */
[data-theme="dark"] {
  --cream:      #141c17;
  --sand:       #182019;
  --text:       #e6ece7;
  --muted:      #93a396;
  --heading:    #f2f6f3;
  --surface:    #1c2921;
  --sage-mist:  rgba(74,124,89,0.22);
  --hairline:   rgba(255,255,255,0.08);
  --hairline-2: rgba(255,255,255,0.12);
}

[data-theme="dark"] .cal-day.cal-disabled {
  color: #4a564d;
}

[data-theme="dark"] .time-slot.slot-taken {
  background: #23302a;
  color: #57665c;
}

[data-theme="dark"] .founder-accent {
  background: rgba(74,124,89,0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--ff-b);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Visible keyboard focus everywhere, including custom interactive
   elements (calendar days, time slots) with no native focus ring. */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

footer {
  text-align: center;
  padding: 32px 28px;
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid var(--hairline);
}

/* ── TYPOGRAPHY UTILITIES ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}

.eyebrow-center::before, .eyebrow-center::after {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--ff-d);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--heading);
  letter-spacing: -0.01em;
  margin: 18px 0 20px;
}

.section-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 24px;
}

.section-body strong {
  color: var(--text);
  font-weight: 500;
}

/* ── LAYOUT CONTAINER ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── BUTTONS ── */
.btn-dark {
  display: inline-block;
  background: var(--forest);
  color: white !important;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-dark:hover {
  transform: translateY(-2px);
  background: var(--sage);
  box-shadow: 0 8px 24px rgba(26,47,34,0.12);
}

.btn-white {
  display: inline-block;
  background: white;
  color: var(--forest) !important;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.77rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border-radius: 100px;
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: white !important;
}

/* ── UNIFIED NAVIGATION ──
   Background is the same forest green used on the homepage hero,
   on every page and in both light/dark mode — it's a fixed brand
   color, not a themed surface. */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17,29,22,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.35s ease;
}

/* Hidden while scrolling down; toggled by scroll.js on every page */
.nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-logo {
  font-family: var(--ff-d);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
}

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

.nav-links a {
  font-size: 0.71rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 8px 16px;
  border-radius: 100px;
}

.nav-links a:hover, .nav-links a.active {
  color: #ffffff;
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--forest-deep) !important;
  padding: 8px 20px;
  margin-left: 6px;
  font-weight: 600;
}

.nav-links .nav-cta:hover {
  background: #d99544;
  transform: translateY(-1px);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 6px;
  flex-shrink: 0;
}

.theme-toggle .toggle-label {
  display: none;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.16);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.45rem;
  padding: 4px;
}

.nav-mobile {
  display: none;
  background: var(--forest-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 28px 20px;
}

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

.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile .theme-toggle {
  margin: 14px auto 0;
}

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: #25d366;
  color: white !important;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: var(--transition);
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── HERO SECTION ── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  background: var(--forest);
  display: flex;
  align-items: center;
  padding: 88px 64px 88px 60px;
}

.hero-content {
  max-width: 460px;
}

.hero-title {
  font-family: var(--ff-d);
  font-size: clamp(3rem, 4.4vw, 4.6rem);
  font-weight: 600;
  line-height: 1.07;
  color: white;
  letter-spacing: -0.01em;
  margin: 28px 0 22px;
}

.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.6);
}

.hero-sub {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  margin-bottom: 44px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--forest) 0%, transparent 20%);
  pointer-events: none;
}

/* ── FOUNDER SECTION ── */
.section-founder {
  padding: 128px 0;
  background: var(--cream);
}

.founder-inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 88px;
  align-items: center;
}

.founder-photo-col {
  position: relative;
}

.founder-accent {
  position: absolute;
  top: -24px;
  left: -24px;
  right: 24px;
  bottom: 24px;
  background: var(--sage-mist);
  border-radius: 20px;
}

.founder-photo-col img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 32px 72px rgba(0,0,0,0.12);
}

.founder-badge {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: -10px;
  background: var(--forest);
  color: white;
  padding: 15px 22px;
  border-radius: 14px;
  font-size: 0.74rem;
  line-height: 1.45;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.founder-badge strong {
  display: block;
  font-family: var(--ff-d);
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}

.founder-badge span {
  color: rgba(255,255,255,0.6);
}

/* ── BOOK SECTION ── */
.section-book {
  padding: 0 0 120px;
}

.book-card {
  background: var(--forest-deep);
  border-radius: 28px;
  padding: 80px 88px;
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.book-card::before {
  content: '"';
  position: absolute;
  right: 56px;
  top: -56px;
  font-family: var(--ff-d);
  font-size: 22rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.book-title {
  font-family: var(--ff-d);
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: white;
  margin: 18px 0;
}

.book-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}

.book-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-cover {
  display: block;
  width: 100%;
  max-width: 260px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  overflow: hidden;
  box-shadow: 16px 20px 48px rgba(0,0,0,0.4);
  transition: var(--transition);
}

.book-cover:hover {
  transform: translateY(-4px);
  box-shadow: 16px 28px 60px rgba(0,0,0,0.5);
  border-left-color: #d99544;
}

.book-cover img {
  display: block;
  width: 100%;
  height: auto;
}

/* Fallback shown only if the cover photo fails to load.
   Gets its own fixed proportions since it has no natural image size. */
.book-cover-fallback {
  aspect-ratio: 184 / 264;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
}

.book-cover-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.book-cover-title {
  font-family: var(--ff-d);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  line-height: 1.25;
  margin-bottom: 10px;
}

.book-cover-author {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── WHY SECTION ── */
.section-why {
  padding: 120px 0;
  background: var(--sand);
}

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}

.why-main-title {
  font-family: var(--ff-d);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.07;
  color: var(--heading);
  letter-spacing: -0.01em;
}

.why-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  padding-bottom: 6px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline-2);
}

.why-item {
  padding: 52px 48px 52px 0;
  border-right: 1px solid var(--hairline-2);
}

.why-item:first-child {
  padding-left: 0;
}

.why-item:nth-child(2) {
  padding-left: 48px;
}

.why-item:last-child {
  border-right: none;
  padding-left: 48px;
  padding-right: 0;
}

.why-num {
  font-family: var(--ff-d);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
}

.why-item-title {
  font-family: var(--ff-d);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 14px;
}

.why-item-body {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}

/* ── CALL TO ACTION (CTA) ── */
.section-cta {
  padding: 120px 0;
  background: var(--cream);
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: var(--ff-d);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--heading);
  letter-spacing: -0.01em;
  margin: 22px 0 18px;
}

.cta-sub {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ── ACCORDION LIST (SERVICES) ── */
.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.accordion-item {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: var(--hairline-2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.accordion-trigger {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ff-d);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
}

.accordion-trigger .arrow {
  font-size: 0.75rem;
  color: var(--muted);
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-body-text {
  padding: 0 28px 28px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
}

.featured-item {
  border: 1.5px solid var(--sage-mist);
}

.badge {
  background: var(--sage);
  color: white;
  font-family: var(--ff-b);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.metric-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.metric-card h3 {
  font-family: var(--ff-d);
  font-size: 1.6rem;
  color: var(--heading);
  margin-bottom: 4px;
}

.metric-card p {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── INTAKE FORM & INPUT STYLING ── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.02);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--hairline-2);
  background: var(--cream);
  border-radius: 12px;
  font-family: var(--ff-b);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--sage);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--sage-mist);
}

/* ── CALENDAR WIDGET STYLING ── */
.cal-container {
  border: 1px solid var(--hairline-2);
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--surface);
}

.cal-header {
  background: var(--sand);
  padding: 16px 20px;
  border-bottom: 1px solid var(--hairline-2);
}

.cal-month-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading);
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.cal-day:hover:not(.cal-disabled):not(.cal-selected) {
  background: var(--sage-mist);
  border-color: var(--sage);
}

.cal-day.cal-selected {
  background: var(--forest) !important;
  color: white !important;
  font-weight: 600;
}

.cal-day.cal-today {
  border: 2px solid var(--gold);
  font-weight: 600;
}

.cal-day.cal-disabled {
  color: #ccc;
  cursor: not-allowed;
  opacity: 0.4;
}

.time-slot {
  border: 1px solid var(--hairline-2);
  background: var(--cream);
  border-radius: 10px;
  padding: 10px;
  font-size: 0.78rem;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.time-slot:hover:not(.slot-taken) {
  border-color: var(--forest);
  background: var(--surface);
}

.time-slot.slot-selected {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}

.time-slot.slot-taken {
  background: #f3f4f6;
  color: #d1d5db;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ── CONTACT CARD ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.contact-card {
  padding: 24px;
  background: var(--cream);
  border-radius: var(--border-radius);
  border: 1px solid var(--hairline);
}

.contact-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card-value {
  font-family: var(--ff-d);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--heading);
}

.contact-card-value a {
  color: var(--heading);
  text-decoration: underline;
  text-decoration-color: var(--sage-mist);
}

.contact-card-value a:hover {
  text-decoration-color: var(--gold);
}

/* ── RESPONSIVE STYLING ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-right {
    height: 54vw;
    order: -1;
  }
  
  .hero-right::after {
    background: linear-gradient(to top, var(--forest) 0%, transparent 28%);
  }
  
  .hero-left {
    padding: 56px 28px 72px;
  }
  
  .hero-content {
    max-width: 100%;
  }

  .nav-links {
    display: none;
  }
  
  .nav-burger {
    display: block;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  
  .founder-accent {
    display: none;
  }
  
  .founder-badge {
    left: 0;
    bottom: 16px;
  }

  .book-card {
    grid-template-columns: 1fr;
    padding: 48px 36px;
    gap: 40px;
  }
  
  .book-card::before {
    display: none;
  }
  
  .book-visual {
    order: -1;
  }

  .why-header {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .why-item {
    padding: 36px 0 !important;
    border-right: none !important;
    border-top: 1px solid var(--hairline-2);
  }
  
  .metric-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-inner {
    height: 56px;
    padding: 0 16px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-right {
    height: 340px;
    min-height: 340px;
  }

  .hero-left {
    padding: 36px 20px 48px;
  }

  .hero-title {
    font-size: 2.4rem;
    line-height: 1.1;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns a, .btn-dark {
    width: 100%;
    text-align: center;
  }

  .section-founder,
  .section-book,
  .section-why,
  .section-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-body,
  .why-desc,
  .why-item-body,
  .cta-sub {
    font-size: 1rem;
  }

  .founder-badge {
    position: static;
    margin-top: 12px;
    display: inline-block;
  }

  .wa-float {
    padding: 10px 14px;
    font-size: 0;
  }

  .wa-float svg {
    margin: 0;
  }

  .nav-mobile {
    padding: 20px;
  }

  .why-item {
    background: var(--surface);
    padding: 24px !important;
    margin-bottom: 12px;
    border-radius: 12px;
  }
}