/* ===========================
  LUXURY PREMIUM CSS RESET
============================ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f9fafb;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: .5em;
}
strong {
  font-weight: 700;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ============
  VARS & FONTS
============== */
:root {
  --color-primary: #2B4267;
  --color-secondary: #D4A745;
  --color-accent: #F4F6F8;
  --color-bg: #FCFCFC;
  --color-bg-alt: #FFFFFF;
  --color-text: #1A2332;
  --color-muted: #8E96AE;
  --color-shadow: rgba(44,54,77,0.07);
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Open Sans', 'Arial', sans-serif;
}

/* Luxury accent: Gold border effect for interactive elements */

@font-face {
  font-family: 'Montserrat';
  font-weight: 700;
  font-display: swap;
  src: local('Montserrat'), url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 400;
  font-display: swap;
  src: local('Montserrat'), url('https://fonts.googleapis.com/css?family=Montserrat:400&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-weight: 400 600 700;
  font-display: swap;
  src: local('Open Sans'), url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
  letter-spacing: 0.01em;
}

/* ========================
   LAYOUT CONTAINERS & SPACING
=========================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-alt);
  border-radius: 16px;
  box-shadow: 0 4px 32px var(--color-shadow);
}
.section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
}

/* Spacing patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  background: var(--color-bg);
  border-radius: 18px;
  box-shadow: 0 6px 28px var(--color-shadow);
  overflow: hidden;
  border: 1.5px solid #eee;
  transition: transform .17s, box-shadow .17s;
}
.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 8px 40px 0 rgba(44,54,77,0.17);
  border-color: var(--color-secondary);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4F6F8;
  border-radius: 12px;
  box-shadow: 0 2px 20px var(--color-shadow);
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 280px;
  border-left: 4px solid var(--color-secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 0 0 0;
}

/* =========================
   TYPOGRAPHY
========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
  line-height: 1.2;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  line-height: 1.25;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
  color: #25355A;
  font-size: 1.06rem;
  line-height: 1.6;
}
span {
  font-size: 0.98rem;
}

ul, ol {
  font-size: 1.04rem;
  margin-bottom: 14px;
}
ul li {
  padding-left: 0.1em;
  margin-bottom: 6px;
}
blockquote {
  color: var(--color-secondary);
  font-style: italic;
  padding-left: 1em;
  border-left: 3px solid var(--color-secondary);
}

/* ========================
   NAVIGATION & HEADER
========================= */
header {
  background: #fff;
  border-bottom: 1.5px solid #e1e3ec;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 20px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  padding-right: 20px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
nav a {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  padding: 8px 2px 7px 2px;
  border-bottom: 2px solid transparent;
  transition: color .17s, border-color .2s;
  position: relative;
}
nav a:hover, nav a[aria-current], .mobile-nav a:focus-visible {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}

.cta-btn {
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 13px 32px;
  font-size: 1.07rem;
  margin-left: 18px;
  cursor: pointer;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 16px 0 var(--color-shadow);
  position: relative;
  overflow: hidden;
  transition: background .18s, color .15s, box-shadow .15s;
}
.cta-btn:hover, .cta-btn:focus-visible {
  background: #b9932c;
  color: #fffbe7;
  box-shadow: 0 6px 32px 0 var(--color-shadow);
}

/* ================
   HERO SECTION
================= */
.hero {
  background: linear-gradient(120deg, #f9fafb 80%, #f2f3f6 100%);
  padding: 46px 0 32px 0;
  border-bottom: 2.5px solid #eeeeef;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.65rem;
  margin-bottom: 18px;
  text-shadow: 0 3px 14px #F4F6F8;
}
.hero p {
  font-size: 1.25rem;
  color: #35507a;
  max-width: 640px;
  margin-bottom: 30px;
}
.hero .cta-btn {
  margin-left: 0;
  font-size: 1.08rem;
}

/* =====================
   FEATURES & CARDS
====================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 260px;
  min-width: 210px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 18px var(--color-shadow);
  padding: 32px 22px 28px 22px;
  border-left: 4px solid var(--color-secondary);
  transition: transform .17s, box-shadow .15s, border-color .2s;
  text-align: left;
}
.feature-grid > div:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 6px 30px 0 var(--color-shadow);
  border-left: 4px solid #b9932c;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 13px;
}

/* =====================
   TESTIMONIALS
====================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 10px;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 32px var(--color-shadow);
  border-left: 4px solid var(--color-secondary);
  padding: 22px 32px 20px 22px;
  flex: 1 1 280px;
  min-width: 260px;
  color: #222;
  margin-bottom: 0;
  transition: box-shadow .2s, border-color .18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(140,110,19,0.16);
  border-left: 4px solid #b9932c;
}
.testimonial-card p {
  color: #25355A;
  font-size: 1.12rem;
  line-height: 1.5;
  margin-bottom: 12px;
  font-style: italic;
}
.testimonial-card span {
  color: var(--color-muted);
  font-size: 1.02rem;
}

/* =====================
   CTA SECTIONS
====================== */
.cta {
  background: var(--color-primary);
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(43,66,103,.16);
  text-align: center;
  margin: 36px 0;
  padding: 48px 18px;
  color: #fff;
}
.cta h2 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 2rem;
}
.cta .cta-btn {
  margin: 0 auto;
  margin-top: 12px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 1.09rem;
}
.cta .cta-btn:hover {
  background: #b9932c;
}

/* =====================
   LISTS, FAQ, TEAM
====================== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.team-list > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 18px var(--color-shadow);
  padding: 24px 18px 18px 22px;
  flex: 1 1 220px;
  min-width: 190px;
}
.team-list h3 {
  margin-bottom: 7px;
}
.team-list span {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 7px;
  display: block;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #fbfbfc;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  padding: 18px 20px 13px 20px;
  border-left: 3px solid var(--color-secondary);
  margin-bottom: 0;
  transition: box-shadow .18s, border-color .2s;
}
.faq-accordion > div:hover {
  box-shadow: 0 8px 20px rgba(212,167,69,0.12);
  border-left: 3px solid #b9932c;
}
.opening-hours {
  margin-top: 18px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.09rem;
}
.map {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
  min-height: 60px;
}

.footer-contact {
  font-size: 1rem;
  color: var(--color-muted);
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.footer-contact img {
  width: 16px;
  margin-right: 6px;
}

/* ===================
   FOOTER
==================== */
footer {
  background: #fff;
  border-top: 1.5px solid #e1e3ec;
  margin-top: 40px;
  padding: 34px 0 22px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 1rem;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 6px;
}
footer nav a {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1.01rem;
}
footer nav a:hover {
  color: var(--color-secondary);
}

/* ==========================
   MOBILE MENU
=========================== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: var(--color-secondary);
  font-size: 2.1rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid var(--color-secondary);
  margin-left: 14px;
  transition: background .17s, color .2s;
}
.mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(43,66,103, .98);
  color: #fff;
  z-index: 999;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transition: transform .35s cubic-bezier(0.5,0,0.25,1);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  animation: mobileMenuIn .33s cubic-bezier(.7,-0.32,.38,1.27) 1;
}
@keyframes mobileMenuIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.mobile-menu-close {
  background: transparent;
  color: var(--color-secondary);
  border: none;
  font-size: 2.2rem;
  padding: 18px 28px 8px 0;
  cursor: pointer;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 0;
  padding: 38px 38px 28px 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.36rem;
  font-weight: 600;
  margin-bottom: 12px;
  padding: 15px 0 13px 0;
  width: 100%;
  border-bottom: 2px solid transparent;
  display: block;
  letter-spacing: 0.01em;
  transition: color .15s, border-bottom .22s;
}
.mobile-nav a:hover, .mobile-nav a:focus-visible {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  background: rgba(255,255,255,.07);
}

/* =====================
   RESPONSIVE
====================== */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .team-list {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 1020px) {
  .feature-grid {
    gap: 20px;
  }
  .testimonial-slider {
    gap: 16px;
  }
  .team-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  header .container {
    flex-direction: row;
    gap: 2px;
  }
  nav, header .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section {
    margin-bottom: 38px;
    padding: 24px 10px;
  }
  .feature-grid, .content-grid, .team-list, .card-container, .testimonial-slider, .contact-details {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch;
  }
  .feature-grid > div, .team-list > div, .card, .testimonial-card {
    min-width: unset;
    width: 100%;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 20px;
    align-items: flex-start;
  }
  .map {
    margin-bottom: 9px;
    justify-content: center;
  }
  .faq-accordion > div {
    padding: 11px 12px 10px 15px;
  }
  .cta {
    padding: 27px 8px;
  }
  h1 {
    font-size: 1.42rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
  .hero p {
    font-size: 1.01rem;
  }
  .cta h2 {
    font-size: 1.21rem;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-size: 0.98rem;
  }
}

@media (max-width: 450px) {
  .cta-btn {
    padding: 12px 15px;
    font-size: 1rem;
  }
  .hero p {
    padding-right: 3px;
  }
}

/* =====================
   HOVER EFFECTS + MICROINTERACTIONS
====================== */
a, .cta-btn, button, .feature-grid > div, .card, .testimonial-card, .faq-accordion > div {
  transition: all .18s cubic-bezier(.64,.15,.39,1.21);
}
input, textarea, select {
  outline: none;
}

/* Subtle shadow/scale on interactive elements */
.feature-grid > div:active,
.card:active,
.testimonial-card:active,
.cta-btn:active,
.faq-accordion > div:active {
  transform: scale(.98);
  box-shadow: 0 2px 8px 0 rgba(43,66,103,0.11);
}

/* =====================
   COOKIE CONSENT BANNER
====================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  color: #fff;
  z-index: 1201;
  padding: 20px 12px 20px 24px;
  box-shadow: 0 -2px 24px 0 var(--color-shadow);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  font-family: var(--font-body);
  font-size: 1.03rem;
  justify-content: space-between;
  animation: cookieBannerShow .4s cubic-bezier(.6,.25,.46,1) 1;
}
@keyframes cookieBannerShow {
  0% { transform: translateY(60px); opacity: 0; }
  98% { transform: translateY(-4px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner__btn, .cookie-banner__btn-settings {
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 22px;
  border: none;
  padding: 9px 22px;
  cursor: pointer;
  margin-left: 0;
  box-shadow: 0 2px 6px var(--color-shadow);
  transition: background .13s, color .17s;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus-visible {
  background: #b9932c;
  color: #fffbe5;
}
.cookie-banner__btn--reject {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid #dedede;
}
.cookie-banner__btn--reject:hover {
  background: #f4f6f8;
  color: var(--color-secondary);
}
.cookie-banner__btn-settings {
  background: none;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-banner__btn-settings:hover {
  background: #fff;
  color: var(--color-secondary);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    font-size: .99rem;
    padding: 14px 8px 14px 10px;
  }
  .cookie-banner__buttons {
    width: 100%;
    gap: 10px;
  }
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(43, 66, 103, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn .32s cubic-bezier(.6,0,.18,1) 1;
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #25355A;
  border-radius: 14px;
  min-width: 340px;
  max-width: 94vw;
  padding: 36px 30px 30px 30px;
  box-shadow: 0 12px 48px 0 rgba(43,66,103,0.45);
  font-family: var(--font-body);
  animation: cookiePanelSlideIn .31s cubic-bezier(.75,-0.08,.18,1.11) 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
@keyframes cookiePanelSlideIn {
  from { transform: translateY(46px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  right: 20px;
  top: 16px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--color-secondary);
  cursor: pointer;
  z-index: 2;
}
.cookie-modal__title {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1.31rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0 5px 0;
}
.cookie-category label {
  font-weight: 600;
  color: var(--color-primary);
  min-width: 160px;
}
.cookie-category input[type='checkbox'] {
  width: 20px; height: 20px;
  accent-color: var(--color-secondary);
}
.cookie-category input[type='checkbox']:disabled {
  opacity: 0.45;
  accent-color: #ddd;
}
.cookie-category .category-desc {
  color: var(--color-muted);
  font-size: 0.99rem;
  font-weight: 400;
}
.cookie-modal__actionbar {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 3px;
}
.cookie-modal button, .cookie-modal input[type='button'] {
  background: var(--color-secondary);
  color: #fff;
  border-radius: 22px;
  border: none;
  font-family: var(--font-display);
  font-size: 1.01rem;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  transition: background .13s, color .15s;
}
.cookie-modal button:disabled {
  background: #eaeaea;
  color: #b7b7b7;
  cursor: default;
}
.cookie-modal button:hover:not(:disabled), .cookie-modal button:focus:not(:disabled) {
  background: #b9932c;
  color: #fffbe5;
}
@media (max-width: 520px) {
  .cookie-modal {
    padding: 18px 8px 18px 8px;
    min-width: 90vw;
    max-width: 99vw;
    font-size: .98rem;
  }
  .cookie-category label {
    min-width: 95px;
  }
}

/* ==========================
   ACCESSIBILITY/MISC
=========================== */
:focus-visible {
  outline: 2.5px solid var(--color-secondary);
  outline-offset: 2px;
  z-index: 2;
}
::-webkit-scrollbar {
  width: 9px;
  background: #f2f4fa;
}
::-webkit-scrollbar-thumb {
  background: #eae1ce;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D4A745;
}

/* Visually hidden (for accessibility where needed) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}

/* Support Old Browsers: fallback colors */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  :root {
    --color-primary: #2B4267;
    --color-secondary: #D4A745;
    --color-accent: #F4F6F8;
    --color-bg: #FCFCFC;
    --color-bg-alt: #FFFFFF;
    --color-text: #1A2332;
    --color-muted: #8E96AE;
    --color-shadow: #d6d9e7;
  }
}
