:root {
  --c-pink: #ff8fc7;
  --c-purple: #a78bfa;
  --c-blue: #60a5fa;
  --c-teal: #4fd1c5;
  --c-ink: #241f33;
  --c-ink-soft: #4a4361;
  --c-bg: #fdfbff;
  --c-bg-alt: #f5f1fb;
  --c-card: #ffffff;
  --grad-main: linear-gradient(120deg, var(--c-pink), var(--c-purple) 45%, var(--c-blue) 75%, var(--c-teal));
  --grad-soft: linear-gradient(135deg, #ffe3f1, #ece3fd 50%, #e1f3ff 100%);
  --shadow-sm: 0 1px 2px rgba(36,31,51,0.06), 0 1px 1px rgba(36,31,51,0.04);
  --shadow-md: 0 8px 20px -6px rgba(120,90,200,0.18), 0 3px 8px -2px rgba(120,90,200,0.12);
  --shadow-lg: 0 24px 48px -16px rgba(120,90,200,0.28), 0 8px 20px -8px rgba(120,90,200,0.16);
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: 'Manrope', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Newsreader', serif;
  color: var(--c-ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--c-ink-soft); }

a { text-decoration: none; color: inherit; transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease; }

img { max-width: 100%; display: block; border-radius: var(--r-md); }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.grad-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.ck-bar {
  background: var(--grad-soft);
  border-bottom: 1px solid #e7d9f7;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
}
.ck-bar.show { display: flex; }
.ck-bar p { margin: 0; color: var(--c-ink-soft); flex: 1 1 320px; }
.ck-bar a { text-decoration: underline; color: var(--c-ink); }
.ck-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.ck-btn {
  border: none; cursor: pointer; padding: 0.55rem 1.1rem; border-radius: var(--r-sm);
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 0.82rem; min-height: 40px;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.ck-btn:hover { transform: translateY(-1px); }
.ck-btn-accept { background: var(--grad-main); color: #fff; box-shadow: var(--shadow-sm); }
.ck-btn-reject { background: transparent; color: var(--c-ink-soft); border: 1px solid #d7c7ef; }


.hdr {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, padding .3s ease;
  padding: 0.9rem 0;
}
.hdr.hdr-scrolled {
  background: rgba(253,251,255,0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  padding: 0.55rem 0;
}
.hdr-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.hdr-logo { display: flex; align-items: center; gap: 0.6rem; font-family: 'Newsreader', serif; font-weight: 700; font-size: 1.3rem; color: var(--c-ink); }
.hdr-logo img { border-radius: 10px; }
.hdr-menu-btn {
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--grad-main); color: #fff; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: transform .25s ease, box-shadow .25s ease;
}
.hdr-menu-btn:hover { transform: scale(1.06) rotate(6deg); box-shadow: var(--shadow-lg); }


.drawer {
  position: fixed; top: 0; left: 0; height: 100vh; width: min(420px, 88vw);
  background: linear-gradient(160deg, #2a1f45, #4a2f6e 45%, #663f8f 100%);
  z-index: 300; transform: translateX(-105%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  display: flex; flex-direction: column; padding: 1.6rem;
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; }
.drawer-top .hdr-logo { color: #fff; }
.drawer-close {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08); color: #fff; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .25s ease, transform .25s ease;
}
.drawer-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.drawer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; flex: 1; align-content: start; }
.drawer-grid a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-md); padding: 1.6rem 0.8rem; color: #fff; text-align: center;
  font-weight: 600; font-size: 0.95rem; min-height: 110px;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.drawer-grid a i { font-size: 1.5rem; }
.drawer-grid a:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); border-color: rgba(255,255,255,0.3); }
.drawer-foot { margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.2); }
.drawer-foot a { color: #fff; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(30,20,50,0.5); z-index: 290;
  opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s ease;
  backdrop-filter: blur(2px);
}
.drawer-overlay.show { opacity: 1; visibility: visible; }


.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.8rem; border-radius: var(--r-sm); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; min-height: 48px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, opacity .25s ease;
}
.btn-primary { background: var(--grad-main); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--c-ink); border: 1.5px solid #d7c7ef; }
.btn-ghost:hover { background: #f4ebfd; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--c-purple); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }
.btn-block { width: 100%; }


.hero { padding: 3rem 0 0; }
.hero-top { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.hero-top h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 700; max-width: 900px; margin: 0 auto 0.4em;
}
.hero-strip { width: 100%; margin: 2rem 0; }
.hero-strip .hero-img {
  width: 100%; height: clamp(220px, 34vw, 420px); object-fit: cover; border-radius: 0;
}
.hero-bottom { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.hero-bottom p { font-size: 1.05rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }


.sec { padding: clamp(3rem, 6vw, 6rem) 0; }
.sec-tight { padding-top: 0; }
.sec-title { font-size: clamp(1.8rem, 4vw, 2.6rem); max-width: 720px; margin-bottom: 0.6em; }
.sec-title-light { color: #fff; }
.eyebrow {
  display: inline-block; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-purple); margin-bottom: 0.8rem;
}
.eyebrow-light { color: #ffd1ea; }
.lead-txt { max-width: 720px; font-size: 1.05rem; margin-bottom: 2rem; }

.sec-dark { background: linear-gradient(160deg, #241a3d, #3a2559 55%, #4d2e70); }
.sec-dark p { color: #d8cceb; }

.sec-glass-bg { background: var(--grad-soft); }


.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: -3rem; position: relative; z-index: 2; }
.stat-card {
  background: var(--c-card); border-radius: var(--r-lg); padding: 2rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-md); border: 1px solid #f0e6fa; transition: transform .3s ease, box-shadow .3s ease;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-card i { font-size: 1.8rem; background: var(--grad-main); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 0.8rem; display: inline-block; }
.stat-card h3 { font-size: 1.1rem; margin-bottom: 0.4em; }
.stat-card p { font-size: 0.9rem; margin: 0; }


.wave-divider { line-height: 0; }
.wave-divider svg { width: 100%; height: 90px; display: block; }
.wave-divider path { fill: var(--c-bg); }
.sec-dark + .wave-divider path, .wave-divider.wave-flip path { fill: var(--c-bg); }
.wave-divider:has(+ .sec-dark) path { fill: #241a3d; }


.zigzag { display: flex; flex-direction: column; gap: 3.5rem; margin-top: 2.5rem; }
.zigzag-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.zigzag-row.reverse .zigzag-img { order: 2; }
.zigzag-row.reverse .zigzag-txt { order: 1; }
.zigzag-img img { width: 100%; height: 280px; object-fit: cover; box-shadow: var(--shadow-lg); }
.zz-num { font-family: 'Newsreader', serif; font-size: 2.2rem; color: var(--c-teal); font-weight: 700; opacity: 0.7; }
.zigzag-txt h3 { color: #fff; font-size: 1.5rem; margin-top: 0.2em; }


.crd {
  background: var(--c-card); border-radius: var(--r-lg); padding: 2.2rem 1.6rem; height: 100%;
  box-shadow: var(--shadow-sm); border: 1px solid #f0e6fa; transition: transform .3s ease, box-shadow .3s ease;
}
.crd:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.crd-ico { width: 56px; height: 56px; border-radius: 16px; background: var(--grad-main); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.crd-ico i { color: #fff; font-size: 1.3rem; }
.crd h3 { font-size: 1.2rem; margin-bottom: 0.4em; }
.crd-txt { font-size: 0.92rem; margin: 0; }
.splide__pagination__page.is-active { background: var(--c-purple); }
.splide__arrow { background: #fff !important; box-shadow: var(--shadow-sm); }
.splide__arrow svg { fill: var(--c-purple) !important; }


.glass-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
  background: rgba(255,255,255,0.55); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.6); border-radius: var(--r-xl); padding: clamp(1.8rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-lg);
}
.glass-txt .eyebrow-light { color: var(--c-purple); }
.glass-txt h2 { color: var(--c-ink); }
.glass-img img { width: 100%; height: 260px; object-fit: cover; }


.faq { max-width: 820px; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--c-card); border: 1px solid #f0e6fa; border-radius: var(--r-md); padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-sm); transition: box-shadow .25s ease;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item summary { cursor: pointer; font-weight: 600; font-family: 'Newsreader', serif; font-size: 1.1rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; font-size: 1.4rem; color: var(--c-purple); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 0.8rem; margin-bottom: 0; }


.sec-cta { background: var(--grad-main); }
.cta-wrap { text-align: center; max-width: 700px; }
.sec-cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.4rem); }
.sec-cta p { color: rgba(255,255,255,0.9); }
.sec-cta .btn-primary { background: #fff; color: var(--c-purple); }
.sec-cta .btn-primary:hover { background: #fff; }


.page-hero {
  background: linear-gradient(160deg, #2a1f45, #4a2f6e 55%, #663f8f);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: #ddd0ef; max-width: 640px; font-size: 1.05rem; }


.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.feat-item {
  background: var(--c-card); border-radius: var(--r-lg); padding: 2rem; border: 1px solid #f0e6fa;
  box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease;
}
.feat-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feat-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.feat-ico i { background: var(--grad-main); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: 1.4rem; }
.feat-item h3 { font-size: 1.15rem; }
.feat-item p { font-size: 0.92rem; margin: 0; }


.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.info-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-md); padding: 1.6rem; text-align: center; }
.info-card i { color: var(--c-teal); font-size: 1.5rem; margin-bottom: 0.6rem; }
.info-card h4 { color: #fff; font-size: 1.02rem; }
.info-card p { color: #d8cceb; font-size: 0.85rem; margin: 0; }


.svc-list { display: flex; flex-direction: column; gap: 1.5rem; }
.svc-row { display: flex; gap: 1.5rem; background: var(--c-card); border-radius: var(--r-lg); padding: 1.8rem; border: 1px solid #f0e6fa; box-shadow: var(--shadow-sm); transition: box-shadow .3s ease, transform .3s ease; }
.svc-row:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-ico { flex-shrink: 0; width: 60px; height: 60px; border-radius: 16px; background: var(--grad-main); display: flex; align-items: center; justify-content: center; }
.svc-ico i { color: #fff; font-size: 1.5rem; }
.svc-body h3 { font-size: 1.2rem; margin-bottom: 0.3em; }
.svc-body p { margin: 0; font-size: 0.94rem; }


.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.info-block { display: flex; gap: 1rem; align-items: flex-start; }
.info-block i { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; color: var(--c-purple); flex-shrink: 0; }
.info-block h4 { margin: 0 0 0.2em; font-size: 1rem; }
.info-block p { margin: 0; font-size: 0.94rem; }
.hours-card { background: var(--c-card); border: 1px solid #f0e6fa; border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.hours-card h4 { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.hours-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.hours-card li { display: flex; justify-content: space-between; font-size: 0.9rem; border-bottom: 1px dashed #ecdff8; padding-bottom: 0.4rem; }
.hours-note { font-size: 0.82rem; margin: 0.8rem 0 0; color: var(--c-ink-soft); }
.map-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid #f0e6fa; }

.contact-form-wrap .frm {
  background: var(--c-card); border-radius: var(--r-xl); padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-lg); border: 1px solid #f0e6fa;
}
.frm h3 { font-size: 1.4rem; margin-bottom: 1.2rem; }
.frm-row { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.frm-row label { font-size: 0.88rem; font-weight: 600; color: var(--c-ink); }
.frm-row label span { color: var(--c-pink); }
.frm-row input[type="text"], .frm-row input[type="email"], .frm-row select, .frm-row textarea {
  border: 1.5px solid #e6d9f4; border-radius: var(--r-sm); padding: 0.8rem 1rem; font-family: 'Manrope', sans-serif;
  font-size: 0.95rem; background: var(--c-bg); color: var(--c-ink); min-height: 48px; transition: border-color .25s ease, box-shadow .25s ease;
}
.frm-row textarea { min-height: 120px; resize: vertical; }
.frm-row input:focus, .frm-row select:focus, .frm-row textarea:focus { outline: none; border-color: var(--c-purple); box-shadow: 0 0 0 3px rgba(167,139,250,0.18); }
.frm-checkbox { flex-direction: row; align-items: flex-start; gap: 0.6rem; }
.frm-checkbox input { width: 20px; height: 20px; margin-top: 0.15rem; flex-shrink: 0; accent-color: var(--c-purple); }
.frm-checkbox label { font-weight: 400; font-size: 0.85rem; color: var(--c-ink-soft); }
.frm-checkbox a { text-decoration: underline; }


.legal-main { padding: clamp(2.5rem, 5vw, 4rem) 0 4rem; }
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.legal-toc {
  position: sticky; top: 100px; display: flex; flex-direction: column; gap: 0.3rem;
  background: var(--c-card); border-radius: var(--r-md); padding: 1.4rem; border: 1px solid #f0e6fa; box-shadow: var(--shadow-sm);
}
.legal-toc-title { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; color: var(--c-purple); margin: 0 0 0.5rem; }
.legal-toc a { font-size: 0.88rem; padding: 0.5rem 0.6rem; border-radius: 8px; color: var(--c-ink-soft); transition: background .25s ease, color .25s ease; }
.legal-toc a:hover, .legal-toc a.active { background: var(--grad-soft); color: var(--c-ink); }
.legal-content h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal-intro { font-size: 1.02rem; margin-bottom: 2rem; }
.legal-content section { margin-bottom: 2.2rem; scroll-margin-top: 110px; }
.legal-content h2 { font-size: 1.35rem; margin-bottom: 0.5em; }
.legal-toc-mobile { display: none; }


.thanks-main { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1.5rem; padding: 4rem 1.5rem; }
.thanks-dot {
  width: 26px; height: 26px; border-radius: 50%; background: var(--grad-main);
  transform: scale(0); animation: dotPop .6s cubic-bezier(.34,1.56,.64,1) forwards;
  box-shadow: var(--shadow-lg);
}
.thanks-title { opacity: 0; font-size: clamp(1.6rem, 4vw, 2.4rem); animation: fadeUp .7s ease forwards; animation-delay: 0.5s; }
.thanks-link { opacity: 0; font-weight: 600; color: var(--c-purple); border-bottom: 1.5px solid var(--c-purple); padding-bottom: 2px; animation: fadeUp .7s ease forwards; animation-delay: 1.1s; }
@keyframes dotPop { to { transform: scale(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }


.ftr { background: linear-gradient(160deg, #f7edfd, #eef2ff 50%, #e8fbf8); margin-top: 2rem; }
.ftr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; padding: 4rem 1.5rem 2.5rem; }
.ftr-col { display: flex; flex-direction: column; gap: 0.7rem; }
.ftr-col h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--c-ink); margin-bottom: 0.3rem; }
.ftr-col a { color: var(--c-ink-soft); font-size: 0.92rem; transition: color .25s ease, transform .25s ease; }
.ftr-col a:hover { color: var(--c-purple); transform: translateX(3px); display: inline-block; }
.ftr-col p { font-size: 0.88rem; margin: 0; }
.ftr-logo { margin-bottom: 0.5rem; }
.ftr-bottom { border-top: 1px solid rgba(120,90,200,0.15); padding: 1.4rem 1.5rem; text-align: center; }
.ftr-bottom p { font-size: 0.82rem; margin: 0; }


@media (max-width: 1024px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .glass-panel { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; margin-bottom: 2rem; }
}

@media (max-width: 768px) {
  .zigzag-row, .zigzag-row.reverse { grid-template-columns: 1fr; }
  .zigzag-row.reverse .zigzag-img, .zigzag-row.reverse .zigzag-txt { order: initial; }
  .svc-row { flex-direction: column; }
}

@media (max-width: 640px) {
  .stat-row { grid-template-columns: 1fr; margin-top: -1.5rem; }
  .feat-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .ftr-grid { grid-template-columns: 1fr; padding-top: 3rem; }
  .drawer-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .ck-bar { flex-direction: column; align-items: stretch; text-align: center; }
  .ck-actions { justify-content: center; }
}