/* ====================== CSS RESET & NORMALIZATION ===================== */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F9FAFB;
  color: #15192a;
  min-height: 100vh;
}
ol, ul {
    list-style: none;
    margin: 0 0 1.5em 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button {
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
*, *:before, *:after {
    box-sizing: border-box;
}

/* ====================== IMPORT FONTS ===================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* ====================== CSS VARIABLES ===================== */
:root {
  --primary: #003366;
  --secondary: #38A4DD;
  --accent: #F9FAFB;
  --accent-dark: #e8edf2;
  --highlight: #FFCD1B;
  --alert: #EF466F;
  --text: #15192a;
  --text-light: #fff;
  --shadow: 0 2px 12px 0 rgba(38, 60, 112, 0.12);
  --rounded: 16px;
  --radius-full: 999px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Helvetica, Arial, sans-serif;
  --spacing: 24px;
}

/* ====================== GENERAL LAYOUT ===================== */
body {
  font-family: var(--font-body);
  background: var(--accent);
  font-size: 16px;
  color: var(--text);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

@media (max-width: 900px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 36px;
    border-radius: 18px;
  }
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    padding: 0 2px;
    max-width: 99vw;
  }
}


/* ====================== TYPOGRAPHY ===================== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
  text-shadow: 0 2px 6px rgba(56,164,221,0.08);
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  line-height: 1.13;
  text-shadow: 0 1px 4px rgba(0,51,102,0.04);
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}
h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--secondary);
  font-weight: 700;
}
p, li, .card p {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.65;
}
strong, b {
    font-weight: 700;
    color: var(--primary);
}

ul, ol {
  margin-bottom: 18px;
  padding-left: 18px;
}
li {
  margin-bottom: 8px;
}

em {
  color: var(--secondary);
  font-style: italic;
}

.text-center {
  text-align: center;
}

/* Artful headers (optional) */
h1, h2 {
  position:relative;
padding-left: 18px;
}
h1:before, h2:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 40%;
  background: var(--highlight);
  border-top-right-radius:8px;
  border-bottom-right-radius:8px;
  position: absolute;
  left:0; top:0; bottom:0;
  margin:auto 0;
  z-index:0;
}
@media (max-width: 480px) {
  h1, .h1 { font-size:2rem; }
  h2, .h2 { font-size:1.25rem; }
  h3, .h3 { font-size:1.05rem; }
}

/* =============== BUTTONS ========================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 12px 36px;
  margin-top: 10px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(0,51,102,0.07);
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px 0 rgba(56,201,221,.13);
  outline: none;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  padding: 10px 28px;
  margin-top: 12px;
  border: none;
  box-shadow: 0 1px 9px 0 rgba(56,164,221,0.11);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: #fff;
  outline: none;
}

/* ======================== HEADER & NAV ===================== */
header {
  background: linear-gradient(98deg, #f9fafb 60%, #eaf3fa 100%);
  box-shadow: 0 1px 10px 0 rgba(56,164,221,.05);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 16px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  position: relative;
  margin-bottom:0;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent-dark);
  color: var(--secondary);
}
.main-nav .btn-primary {
  margin-left: 18px;
  font-size:1rem;
}

header img {
  height: 40px;
  width: auto;
  display: block;
  margin-right: 18px;
}

/* Hide burger on desktop */
.mobile-menu-toggle {
  font-size: 2.1rem;
  color: var(--primary);
  background: var(--secondary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, box-shadow .2s;
  box-shadow:0 1px 8px rgba(56,164,221,0.11);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--highlight);
  color: var(--primary);
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  header img { height:34px; }
}

/* ====================== MOBILE MENU ===================== */
.mobile-menu {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4,24,39,0.4);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(.77,0,.175,1);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--primary);
  background: var(--accent);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin: 16px 20px 2px 0;
  transition: background .2s, color .2s;
  z-index:2;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--alert);
  color: var(--text-light);
}
.mobile-nav {
  background: #fff;
  border-radius: 24px 0 0 24px;
  min-width: 260px;
  width: 280px;
  max-width: 90vw;
  padding: 32px 16px 28px 36px;
  margin-top: 8px;
  margin-right:0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow:0 2px 40px 0 rgba(56,164,221,0.12);
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight:600;
  font-size:1.15rem;
  padding: 10px 0 10px 10px;
  border-radius: 10px;
  transition: background 0.19s, color 0.19s;
  text-align:left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
@media (min-width: 901px) {
  .mobile-menu { display:none !important; }
}

/* ===================== HERO =========================== */
.hero {
  background: linear-gradient(107deg, #fff 70%, #e5f3ff 100%);
  box-shadow:0 2px 32px 0 rgba(56,164,221,0.06);
  min-height: 80px;
  padding: 64px 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  text-align: center;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.6rem;
  letter-spacing: -1px;
  margin-bottom:14px;
  line-height:1.1;
  text-shadow:0 3px 24px rgba(0,51,102,.03);
}
.hero p {
  color: var(--secondary);
  font-size: 1.13rem;
  max-width:700px;
  margin:0 auto 13px auto;
  font-family: var(--body);
}
@media (max-width:768px) {
  .hero {
    padding:34px 0 24px 0;
  }
  .hero h1 { font-size: 1.4rem; }
  .hero p { font-size:1rem; padding: 0 3px; }
}

/* ==================== FLEXBOX LAYOUTS (MANDATORY) ================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom:28px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background:#fff;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  flex: 1 1 240px;
  min-width: 230px;
  transition: box-shadow 0.17s, transform 0.17s;
  z-index: 2;
}
.card:hover,.card:focus {
  box-shadow: 0 8px 32px 0 rgba(56,164,221,0.13);
  transform: translateY(-4px) scale(1.01);
}
.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 !important;
    align-items: stretch;
    gap:20px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    align-items: stretch;
    gap:16px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 22px;
  padding: 20px 34px 20px 26px;
  margin-bottom: 24px;
  box-shadow:0 1px 21px 0 rgba(56,164,221,0.12);
  border:2px solid var(--accent-dark);
  max-width:440px;
  min-width:230px;
  position: relative;
  transition: box-shadow 0.16s, border 0.16s;
}
.testimonial-card:before {
  content: '"';
  position: absolute;
  left: 15px;
  top: 12px;
  font-size: 2.3rem;
  color: var(--highlight);
  font-family: var(--font-display);
  opacity:0.32;
  z-index: 1;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: var(--text);
  position:relative;
  z-index:2;
}
.testimonial-name {
  font-family: var(--font-display);
  color: var(--secondary);
  font-weight:700;
  font-size:1.01rem;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
@media (max-width:768px) {
  .testimonial-slider {
    flex-direction: column;
    gap:16px;
  }
}

/* ==================== FEATURE GRID & STEP LISTS ================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom:20px;
}
.feature-grid > div {
  background: #fff;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  flex: 1 1 240px;
  min-width: 230px;
  padding: 26px 18px 20px 18px;
  text-align: center;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow .17s, transform .16s;
  margin-bottom: 20px;
  position:relative;
}
.feature-grid > div:hover,
.feature-grid > div:focus {
  box-shadow: 0 8px 32px 0 rgba(56,164,221,0.15);
  transform: translateY(-2px) scale(1.015);
}
.feature-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom:18px;
}

.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
  justify-content: flex-start;
}
.step-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 26px 20px 20px 20px;
  flex: 1 1 230px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .19s, transform .14s;
}
.step-list li img {
  height: 40px;
  width: 40px;
  margin-bottom: 12px;
}
.step-list li:hover,
.step-list li:focus {
  box-shadow: 0 8px 32px 0 rgba(56,164,221,0.14);
  transform: scale(1.015);
}
@media (max-width: 850px) {
  .feature-grid,
  .step-list {
    flex-direction: column;
    gap:16px;
  }
  .feature-grid > div, .step-list li {
    min-width:unset;
    width: 100%;
  }
}

/* =================== FAQ ACCORDION (creative artistic styling) =============== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.faq-accordion h3 {
  background: var(--secondary);
  color: #fff;
  padding: 16px;
  border-radius: 14px 14px 0 0;
  font-size: 1.07rem;
  font-family: var(--font-display);
  font-weight:700;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
  margin-bottom: 0;
  margin-top: 0;
}
.faq-accordion h3.open, .faq-accordion h3:hover {
  background: var(--primary);
  color: var(--highlight);
}
.faq-accordion>div {
  background: #fff;
  color: var(--text);
  padding: 18px 16px 10px 22px;
  border-radius:0 0 14px 14px;
  box-shadow:0 1px 12px rgba(56,164,221,0.10);
  font-size:1rem;
  display: none;
}
.faq-accordion>div.open {
  display:block;
  animation: faqReveal .30s;
}
@keyframes faqReveal {
  from {opacity:0; transform:translateY(-8px);}
  to {opacity:1; transform:translateY(0);}
}

/* ================== TABLES (comparison-table) ============== */
.comparison-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  overflow:hidden;
}
.comparison-table th, .comparison-table td {
  padding: 18px 14px;
  text-align: left;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--primary);
}
.comparison-table th {
  background: var(--accent-dark);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
}
.comparison-table tr:nth-child(even) {
  background: #f6fafd;
}
.comparison-table tr:nth-child(odd) {
  background: #fff;
}
.comparison-table td img {
  display: inline-block;
  vertical-align:middle;
  margin-right:10px;
  height:30px; width:auto;
}
@media (max-width: 600px) {
  .comparison-table, .comparison-table th, .comparison-table td {
    font-size:.98rem;
    padding:10px 4px;
  }
}

/* ================ CONTACT BOX & MAP BOX ==================== */
.contact-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 26px 18px 20px 18px;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.contact-box > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size:1rem;
  margin-bottom:4px;
}
.contact-box img {
  height:28px; width:28px;
}
.map-box {
  background: var(--accent-dark);
  border-radius:14px;
  min-height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
  padding:18px 8px;
}

/* ======================== FOOTER ===================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 12px 0;
  margin-top: 66px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
}
footer a {
  color: var(--highlight);
  font-family: var(--font-display);
  font-weight:600;
  font-size:1rem;
  margin-right: 18px;
  transition: color 0.16s;
}
footer a:hover, footer a:focus {
  text-decoration: underline;
  color: var(--secondary);
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-contact {
  font-size: .99rem;
  line-height: 1.55;
}
.footer-contact img {
  height:18px;
  width:18px;
  margin-right:4px;
  vertical-align: middle;
}
.footer-copy {
  width: 100%;
  margin-top:18px;
  color: var(--accent-dark);
  font-size:.98rem;
  text-align:right;
}
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap:22px;
  }
  .footer-copy {
    text-align:left;
    margin-top:10px;
  }
}

/* ================= CREATIVE ARTISTIC UNIQUE ELEMENTS ================ */
/* Artistic hand-drawn border highlight for cards */
.card,.feature-grid > div,.step-list li {
  border: 2.2px solid transparent;
  background-clip: padding-box;
  position:relative;
}
.card:after,.feature-grid > div:after,.step-list li:after {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 5px; left: 7px; right: 7px; bottom: 8px;
  border-radius: calc(var(--rounded) - 6px);
  border: 2px dashed var(--highlight);
  opacity: 0.19;
  z-index:1;
}

/* Artistic shadow highlight for buttons */
.btn-primary, .btn-secondary {
  box-shadow: 0 2px 18px 0 rgba(255,205,27,0.09), var(--shadow);
}

/* Subtle card hover bounce */
.card, .feature-grid > div, .step-list li {
  transition: box-shadow 0.19s, transform 0.14s, border 0.11s;
}

/* ============ COOKIE CONSENT BANNER ============= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 32px 0 rgba(56,164,221,0.10);
  border-top: 3px solid var(--secondary);
  z-index: 2000;
  padding: 18px 8px 18px 8px;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  animation: cookieSlideUp .37s;
}
@keyframes cookieSlideUp {
  from { opacity:0; transform:translateY(80px); }
  to { opacity:1; transform:translateY(0); }
}
.cookie-banner .cookie-text {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1.06rem;
  margin-right: 18px;
  max-width: 380px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner .btn-cookie {
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 9px 26px;
  font-family: var(--font-display);
  font-weight:700;
  border:none;
  font-size: 1rem;
  transition: background .16s, color .16s, transform .16s;
}
.cookie-banner .btn-cookie.settings {
  background: var(--primary);
  color: var(--highlight);
  border: 2px solid var(--highlight);
}
.cookie-banner .btn-cookie:hover,.cookie-banner .btn-cookie:focus {
  background: var(--highlight);
  color: var(--primary);
  transform: translateY(-2px);
}
.cookie-banner .btn-cookie.settings:hover {
  background: var(--secondary);
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 8px 22px 8px;
  }
  .cookie-banner .cookie-text { margin-right:0; max-width:100vw; }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap:8px;
    margin-top:8px;
  }
}

/* ============= COOKIE CONSENT MODAL ================ */
.cookie-modal {
  position: fixed;
  left:0; top:0; right:0; bottom:0;
  z-index:2100;
  background: rgba(4,24,39,0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .26s;
}
.cookie-modal.active {
  pointer-events: auto;
  opacity:1;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 5px 28px 0 rgba(56,164,221,0.14);
  padding: 36px 28px 28px 32px;
  min-width:290px; max-width:95vw; width:380px;
  position: relative;
  animation: modalPop .42s;
}
@keyframes modalPop {
  from {opacity:0; transform:scale(0.90);}
  to   {opacity:1; transform:scale(1);}
}
.cookie-modal-content h2 {
  font-size:1.32rem;
  color: var(--secondary);
  margin-bottom:16px;
}
.cookie-modal-content label {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 500;
  font-size:1rem;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 11px;
}
.cookie-modal-content input[type=checkbox] {
  accent-color: var(--secondary);
  width: 21px; height: 21px; margin-right:4px;
}
.cookie-modal-content .btn-cookie {
  margin-top:18px;
  width:100%;
}
.cookie-modal-close {
  position: absolute;
  top:18px; right:18px;
  background: var(--alert);
  color:#fff;
  border-radius: 50%;
  border: none;
  width:34px; height:34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:1.6rem;
  transition: background .15s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--secondary);
}

/* ============= MISC - LINKS, UL, OL, CODE, ETC =============== */
a, .link {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.19s;
}
a:hover, .link:hover {
  color: var(--primary);
}
ul li::marker {
  color: var(--secondary);
}
ol li {
  list-style: decimal inside;
}

/* ================== UTILITIES ===================== */
.d-none { display:none!important; }
.text-right { text-align:right; }
.text-left { text-align:left; }
.mt-0 { margin-top:0!important; }
.mb-0 { margin-bottom:0!important; }
.mt-2 { margin-top: 16px!important; }
.mt-3 { margin-top: 24px!important; }
.mb-3 { margin-bottom: 24px!important; }

/* ======================== MEDIA QUERIES =============== */
@media (max-width: 500px) {
  body { font-size: 15px; }
  .card, .feature-grid > div, .step-list li { padding: 18px 8px 16px 8px;}
  .card-container, .feature-grid, .step-list, .testimonial-slider {
    gap: 10px;
  }
  .testimonial-card {
    padding: 14px 10px 14px 10px;
    min-width: unset;
    max-width: 97vw;
  }
  .footer-contact span {font-size:.94rem;}
}

/* =================== ARTISTIC CIRCLE BG (OPTIONAL, DEMO) ================ */
.section:before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -48px; right: -60px;
  width: 160px; height: 140px;
  background: var(--secondary);
  opacity: 0.09;
  border-radius: 60% 60% 80% 40%;
  filter: blur(2px);
  pointer-events: none;
}
.section .content-wrapper { position:relative; z-index:2; }

/* ================== ARTISTIC FONT-FLARE FOR SOME HIGHLIGHTS =============== */
.highlight-text, .policy-highlight {
  font-family: var(--font-display);
  color: var(--highlight);
  font-weight: 900;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  padding:1px 6px; border-radius:10px;
}

/* ================ END STYLE.CSS =================== */