/* ==== CSS RESET & NORMALIZE ==== */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  background: #F6F6F3;
  color: #223144;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.18s cubic-bezier(.45,.03,.37,1.32);
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ==== THEME VARIABLES ==== */
:root {
  --brand-primary: #223144;
  --brand-secondary: #FFD65A;
  --brand-accent: #F6F6F3;
  --brand-red: #EB5757;
  --brand-blue: #4F8CFF;
  --brand-pink: #FE5FA4;
  --brand-green: #70D53D;
  --brand-orange: #FFA353;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --shadow-card: 0 4px 20px 0 rgba(34,49,68,0.09);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --brand-dark-text: #223144;
  --brand-light-text: #FFF;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-wrap: balance;
}
h1 {
  font-size: 2.5rem;
  color: var(--brand-primary);
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  line-height: 1.1;
  /* playful animated underline */
  position: relative;
}
h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background: var(--brand-secondary);
  border-radius: 2px;
  margin: 12px 0 0 0;
  animation: underlineWobble 1.3s cubic-bezier(.36,.07,.19,.97) infinite alternate;
}
@keyframes underlineWobble {
  0% { width: 60px; }
  100% { width: 95px; }
}
h2 {
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.14;
  margin-top: 8px;
}
h3 {
  font-size: 1.3rem;
  color: var(--brand-blue);
  margin-bottom: 10px;
  font-weight: 700;
  margin-top: 16px;
  line-height: 1.2;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 8px;
}
p, li, blockquote, cite {
  font-family: var(--font-body);
  color: var(--brand-primary);
  font-size: 1rem;
  line-height: 1.7;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}
blockquote {
  background: var(--brand-accent);
  border-left: 5px solid var(--brand-secondary);
  padding: 18px 32px 18px 22px;
  border-radius: var(--radius-md);
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-style: italic;
  margin: 16px 0 20px 0;
  color: var(--brand-primary);
}
cite {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 1rem;
  font-style: normal;
}

/* ==== LAYOUT ==== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: transparent;
  border-radius: var(--radius-lg);
}
.text-section {
  background: var(--brand-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  margin-bottom: 24px;
  animation: fadeInPop 0.8s cubic-bezier(.8,0,.55,1.22);
}
@keyframes fadeInPop {
  from { opacity:0; transform: translateY(30px) scale(.95); }
  to { opacity:1; transform: none; }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==== CARD / FLEX CONTAINERS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 20px;
  min-width: 250px;
  transition: box-shadow 0.22s cubic-bezier(.19,.87,.76,.92), transform 0.22s cubic-bezier(.19,.87,.76,.92);
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(34,49,68,.17);
  transform: translateY(-3px) scale(1.03) rotate(-1.5deg);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==== FEATURE GRIDS ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #fffbe9;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 22px 18px 18px 18px;
  text-align: center;
  min-width: 200px;
  transition: box-shadow 0.22s cubic-bezier(.58,1.01,.54,1.14), transform 0.2s cubic-bezier(.16,1,.3,1);
}
.feature-grid > div:hover {
  box-shadow: 0 6px 28px 0 rgba(255, 214, 90, 0.14), var(--shadow-card);
  background: #fff7ce;
  transform: scale(1.04) rotate(1.5deg);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  animation: playfulBounce 1.9s cubic-bezier(.46,1.01,.56,1.19) infinite alternate;
}
@keyframes playfulBounce {
  0% { transform: translateY(0) scale(1) rotate(-6deg); }
  100% { transform: translateY(-10px) scale(1.04) rotate(5deg); }
}

/***** TESTIMONIALS *****/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe9;
  border-left: 8px solid var(--brand-pink);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  margin: 18px 0 24px 0;
  transition: box-shadow 0.18s cubic-bezier(.58,1.01,.54,1.14);
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px 0 rgba(254,95,164,.19), var(--shadow-card);
  border-left: 8px solid var(--brand-blue);
}
.testimonial-card blockquote {
  margin: 0; padding: 0; background: none; border: none; font-size: 1.1rem; color: var(--brand-dark-text);
}
.testimonial-card cite {
  color: var(--brand-blue);
  font-size: 1rem;
  text-align: left;
  margin-top: 6px;
}

/***** NAVIGATION BAR *****/
header {
  position: sticky;
  top: 0;
  background: #F6F6F3cc;
  z-index: 20;
  box-shadow: 0 0 16px 0 rgba(34,49,68,0.05);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 24px 0;
  justify-content: flex-start;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--brand-primary);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  transition: color 0.16s, background 0.22s, transform 0.18s cubic-bezier(.45,.03,.37,1.32);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-blue);
  background: #e4ecfc;
  transform: scale(1.05) rotate(-2deg);
}
.main-nav img {
  width: 44px; height: 44px; border-radius: 14px; margin-right: 10px;
  box-shadow: 0 2px 8px 0 rgba(223,230,255,0.24);
}
.cta-primary {
  background: linear-gradient(92deg, var(--brand-secondary) 70%, #FFA353 100%);
  color: var(--brand-dark-text)!important;
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 22px 0 rgba(255, 194, 91, 0.16);
  padding: 10px 28px;
  font-size: 1.17rem;
  margin-left: auto;
  transition: background 0.22s cubic-bezier(.24,.92,.58,1.09), box-shadow 0.18s cubic-bezier(.12,1,.3,1);
  border: none;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(92deg, #FFA353 40%, var(--brand-secondary) 100%);
  color: var(--brand-primary)!important;
  box-shadow: 0 6px 32px 0 #FFD65A22;
  transform: scale(1.06) rotate(-1deg);
}
.cta-secondary {
  background: #fff;
  color: var(--brand-blue);
  font-family: var(--font-display);
  padding: 9px 22px;
  font-size: 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 12px 0 rgba(79, 140, 255, 0.08);
  font-weight: 700;
  transition: background 0.20s, color 0.18s, transform 0.13s cubic-bezier(.45,.03,.37,1.32);
  margin-top: 16px;
  border: none;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #e4ecfc;
  color: var(--brand-primary);
  transform: scale(1.05);
}

/***** MOBILE BURGER MENU *****/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--brand-secondary);
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  color: var(--brand-dark-text);
  box-shadow: 0 2px 12px 0 #FFD65A40;
  z-index: 105;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
}
.mobile-menu-toggle:active {
  background: #FFA353;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #223144ee;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.86,.09,.7,1.03);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 44px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: #FFD65A;
  color: #223144;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 8px 0 #FFD65A24;
  cursor: pointer;
  z-index: 151;
  transition: background 0.15s;
}
.mobile-menu-close:hover { background: #FFA353; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 50px;
}
.mobile-nav a {
  color: var(--brand-light-text);
  background: none;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: var(--radius-md);
  transition: background 0.18s, color 0.15s, transform 0.12s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFD65A;
  color: var(--brand-primary);
  transform: scale(1.08);
}

@media (max-width: 1020px) {
  .container { max-width: 100%; }
  .main-nav {
    flex-wrap: wrap;
    gap: 7px;
    padding: 20px 0;
  }
}
@media (max-width: 900px) {
  .main-nav a { font-size: 0.99rem; padding: 7px 10px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* Fix z-index for mobile menu toggle */
header, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close { z-index: 160; }

@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  .main-nav { display: flex !important; }
}

/* ==== FOOTER ==== */
footer {
  background: #223144;
  color: #FFF;
  padding: 45px 0 24px 0;
  margin-top: 64px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--brand-secondary);
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.19s;
  padding: 7px 8px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #fffbe9;
  color: var(--brand-primary);
}
.footer-info p{
  color: white;
}
.footer-info {
  text-align: center;
  font-size: 0.94rem;
  color: #D7E0EB;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 200;
  background: #fffbe9;
  color: var(--brand-primary);
  box-shadow: 0 0 28px 0 #FFD65A44;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 22px 28px 22px 24px;
  border-radius: 16px 16px 0 0;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  animation: cookieSlideIn 0.5s cubic-bezier(.13,1,.73,1.2);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(120%); opacity: 0; }
  60% { transform: translateY(-10px); opacity: 1; }
  100% { transform: translateY(0); }
}
.cookie-banner p {
  margin: 0;
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-banner .cookie-btn {
  background: var(--brand-secondary);
  border: none;
  color: var(--brand-dark-text);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 8px 20px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, box-shadow 0.19s, color 0.16s;
  box-shadow: 0 2px 8px 0 #FFD65A24;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: var(--brand-blue);
  border: 1px solid var(--brand-blue);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #FFA353;
  color: var(--brand-primary);
}
.cookie-banner .cookie-btn.settings:hover {
  background: #e4ecfc;
  color: var(--brand-primary);
}

/***** COOKIE CONSENT MODAL *****/
.cookie-modal-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height:100vh;
  background: rgba(22, 18, 42, 0.34);
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: cookieModalFade 0.35s;
}
@keyframes cookieModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffbe9;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 48px 0 #FFD65A33;
  padding: 32px 32px 28px 32px;
  margin-bottom: 34px;
  width: 95vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  animation: cookieModalPopup 0.3s cubic-bezier(.42,.58,.26,1.36);
}
@keyframes cookieModalPopup {
  0% { transform: scale(0.86) translateY(50px); opacity: 0; }
  90% { transform: scale(1.04) translateY(-2px); opacity: 1; }
  100% { transform: none; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 7px 15px;
  margin-bottom: 8px;
}
.cookie-modal .category-switch {
  position: relative;
  width: 38px;
  height: 22px;
  background: #e4ecfc;
  border-radius: 12px;
  margin-right: 7px;
  cursor: pointer;
}
.cookie-modal .category-switch input[type=checkbox] {
  opacity: 0; position: absolute; width: 38px; height: 22px; left: 0; top: 0; cursor: pointer;
}
.cookie-modal .switch-ball {
  position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #FFD65A;
  transition: left 0.22s cubic-bezier(.43,.44,.32,1.16);
}
.cookie-modal .category-switch input[type=checkbox]:checked + .switch-ball {
  left: 19px;
  background: #4F8CFF;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  padding: 8px 20px;
  font-size: 1rem;
}
.cookie-modal .cookie-btn.reject {
  background: #fff;
  color: var(--brand-red);
  border: 1px solid var(--brand-red);
}
.cookie-modal .cookie-btn.reject:hover {
  background: #FFD65A;
  color: #223144;
}
.cookie-modal .cookie-btn.accept {
  background: #FFD65A;
  color: #223144;
  border: none;
}
.cookie-modal .cookie-btn.accept:hover {
  background: #FFA353;
  color: #223144;
}
.cookie-modal .cookie-btn.settings {
  border: 1px solid var(--brand-blue);
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #FFD65A;
  color: #223144;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.13s;
  z-index: 2;
}
.cookie-modal .cookie-close:hover {
  background: #FFA353;
}

/***** FORM ELEMENTS *****/
input, textarea, select {
  border: 2px solid #E0E8F3;
  border-radius: var(--radius-sm);
  padding: 8px 13px;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(34,49,68,0.04);
  margin-bottom: 16px;
  font-family: var(--font-body);
  background: #fff;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-secondary);
  box-shadow: 0 4px 12px 0 #FFD65A28;
}
label {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 6px;
}

/***** LISTS & TABLES *****/
ul, ol {
  list-style: disc inside;
  margin-bottom: 24px;
  padding-left: 18px;
  color: var(--brand-primary);
}
ul li, ol li {
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}
th, td {
  border: 1px solid #E0E8F3;
  padding: 10px 14px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #E4ECFC;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-primary);
}

/***** MISC *****/
::-webkit-input-placeholder { color: #7486A9; }
::-moz-placeholder { color: #7486A9; }
:-ms-input-placeholder { color: #7486A9; }
::placeholder { color: #7486A9; }

/***** SPACING & FLEX UTILITIES (MANDATORY) *****/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** RESPONSIVE FLEX ORDERING & DENSITY *****/
@media (max-width: 768px) {
  .section { padding: 28px 7px; margin-bottom: 32px; }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card { flex-direction: column; gap: 10px; align-items: flex-start; }
  .content-grid { flex-direction: column; gap: 16px; }
  .footer-nav { gap: 12px; }
  .container { padding: 0 7px; }
  .card-container { flex-direction: column; gap: 20px; }
}

/***** INTERACTIONS - HOVER, ACTIVE, FOCUS, TRANSITIONS *****/
a, .cta-primary, .cta-secondary, button, .cookie-btn {
  outline: none;
}
.cta-primary:focus-visible, .cta-secondary:focus-visible, .cookie-btn:focus-visible {
  outline: 3px dashed var(--brand-secondary);
  outline-offset: 2px;
}
input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 0.8px;
}
details[open] > summary {
  background: #ffd65a33;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/***** ANIMATED BUTTON MICRO-INTERACTIONS *****/
.cta-primary, .cta-secondary, .cookie-btn {
  transition: 
    background 0.18s cubic-bezier(.34,1.56,.64,1), 
    color 0.13s, 
    box-shadow 0.16s cubic-bezier(.22,1.17,.68,1),
    transform 0.19s cubic-bezier(.51,1.47,.58,1.11);
}
.cta-primary:active, .cta-secondary:active, .cookie-btn:active {
  transform: scale(0.97);
}

/***** PLAYFUL DECORATIVE ELEMENTS (ONLY AS DECOR, NEVER FOR CONTENT) *****/
.playful-dot {
  position: absolute;
  width: 26px;
  height: 26px;
  background: #FE5FA4;
  top: -13px;
  left: -24px;
  border-radius: 50%;
  opacity: 0.13;
  pointer-events: none;
  z-index: 1;
  animation: pulsePop 1.9s infinite alternate;
}
@keyframes pulsePop {
  0%, 100% { transform: scale(.9); }
  50% { transform: scale(1.11); opacity:0.22; }
}

/***** PROMINENT BREATHING ROOM *****/
.section, .content-wrapper, .text-section, .card, .feature-grid > div, .testimonial-card {
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.0rem; }
  .cta-primary, .cta-secondary { font-size: 0.94rem; }
  .footer-nav a { font-size: 0.98rem; }
}
/* ==== END ==== */
