/* =========================================================== */
/*  CSS RESET & NORMALIZE FOR CONSISTENT BASELINE             */
/* =========================================================== */
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, menu, 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, 
main, 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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F2F4F8;
  font-family: 'Roboto', Arial, sans-serif;
  color: #233B77;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
main:focus { outline: none; }
a {
  color: #233B77;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #3CC1C6;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}
li {
  margin-bottom: 8px;
}

/* =========================================================== */
/*  VARIABLE DEFINITION FOR BRAND STYLE                       */
/* =========================================================== */
:root {
  --primary: #233B77;
  --secondary: #3CC1C6;
  --accent: #F2F4F8;
  --text-dark: #142248;
  --text-light: #fff;
  --border-radius: 18px;
  --radius-small: 10px;
  --radius-card: 20px;
  --shadow: 0 8px 32px rgba(35,59,119,0.09), 0 1.5px 5px rgba(60,193,198,.06);
  --shadow-light: 0 2px 8px rgba(60,193,198,0.08);
  --transition: all .27s cubic-bezier(.55,.07,.46,1.04);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* =========================================================== */
/*   BASE LAYOUT & BRAND STYLES   (creative_artistic)         */
/* =========================================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.header .container,
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

/* =========================================================== */
/*  TYPOGRAPHY                                                */
/* =========================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: .02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.18;
  text-shadow: 0 2px 0 #3CC1C6;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
  line-height: 1.2;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  line-height: 1.21;
}
h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 14px;
}
.text-section ul,
.text-section ol {
  margin-bottom: 14px;
}
.text-section ul li {
  padding-left: 0.5em;
  position: relative;
}
.text-section ul li:before {
  content: '•';
  color: var(--secondary);
  font-size: 1.1em;
  margin-right: 8px;
  vertical-align: middle;
}

blockquote {
  padding: 16px 30px;
  color: var(--primary);
  background: #e6f5f6;
  border-left: 5px solid var(--secondary);
  border-radius: var(--radius-small);
  margin-bottom: 22px;
  font-style: italic;
  font-size: 1.08rem;
}

strong { font-weight: 600; }

/* Artistic type accent for "creative_artistic" design */
h1, h2 {
  font-family: 'Montserrat', var(--font-display), Arial, sans-serif;
  font-weight: 900;
  background: linear-gradient(90deg, #233B77 60%, #3CC1C6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Responsive typography scale */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.1rem; }
  .container { padding: 0 8px; }
}

/* =========================================================== */
/*  HEADER & NAVIGATION                                       */
/* =========================================================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 7px 0 rgba(35,59,119,0.09);
  padding: 0;
  z-index: 20;
  position: relative;
}
header .container {
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 18px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 32px;
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 6px;
  border-radius: var(--radius-small);
  transition: background .2s, color .2s;
}
nav a:hover, nav a.active {
  background: var(--secondary);
  color: var(--text-light) !important;
}

.btn-primary {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
  background: var(--primary);
  color: #fff !important;
  padding: 12px 28px;
  margin-left: 24px;
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 3px 20px 0 rgba(60,193,198,0.10);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(35,59,119,.11);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: var(--primary) !important;
  box-shadow: 0 7px 26px 0 rgba(60,193,198,0.18);
  outline: none;
  transform: translateY(-3px) scale(1.045);
}

/* =========================================================== */
/*  MOBILE NAVIGATION   (Hamburger Menu)                      */
/* =========================================================== */
.mobile-menu-toggle {
  position: absolute;
  right: 18px;
  top: 19px;
  z-index: 50;
  display: none;
  font-size: 2.1rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-small);
  transition: background .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e3f8f8;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 95vw;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 30px 6px rgba(35,59,119,0.15);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  z-index: 200;
  transform: translateX(102vw);
  transition: transform .38s cubic-bezier(.82,.01,.33,1.01);
}
.mobile-menu.open {  transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 18px 10px 0;
  font-size: 2rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-small);
  padding: 7px 12px;
  transition: background .15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #e6f5f6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 0 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.21rem;
  color: var(--primary);
  padding: 12px 5px;
  border-radius: var(--radius-small);
  transition: background .18s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--secondary);
  color: #fff !important;
}

@media (max-width: 1000px) {
  nav { display: none; }
  .btn-primary { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
  }
}

/* Overlay behind mobile menu (use .mobile-menu.open + body overlay, JS required for real overlay effect) */
body.menu-open::before {
  content: '';
  display: block;
  position: fixed;
  z-index: 150;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,59,119,0.20);
  transition: opacity .22s;
}

/* =========================================================== */
/*  MAIN - CORE LAYOUT & FLEXBOX UTILITIES                     */
/* =========================================================== */
main {
  padding-top: 16px;
  padding-bottom: 30px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--border-radius);
  background: #fff;
  box-shadow: var(--shadow-light);
  position: relative;
}
/* Artistic grad blur border (decorative - add around hero) */
section:first-of-type {
  border: 2.5px dashed var(--secondary);
  box-shadow: 0 8px 36px 0 rgba(60,193,198,.034);
}
/* Extra artistic effect on hero on homepage */
.index main > section:first-of-type {
  background: linear-gradient(110deg, #E9FAFC 80%, #F2F4F8 100%);
}

/* ------------------------------------ */
/*  FLEX WRAPPERS & SPACING             */
/* ------------------------------------ */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1rem;
  color: var(--primary);
  max-width: 670px;
}
.features-grid, .blog-list, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div,
.card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px 18px 22px 18px;
  box-shadow: var(--shadow-light);
  min-width: 230px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 2px solid transparent;
  transition: box-shadow .22s, border .18s, transform .16s;
  position: relative;
  z-index: 1;
}
.features-grid > div:hover,
.card:hover {
  box-shadow: 0 12px 42px 0 rgba(60,193,198,0.13);
  border: 2px solid var(--secondary);
  transform: translateY(-4px) scale(1.035);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
/* Testimonials distinctively styled */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  background: #e6f5f6;
  color: var(--primary);
  box-shadow: 0 2px 17px 0 rgba(35,59,119,0.06);
  position: relative;
  font-size: 1.03rem;
  min-width: 220px;
}
.testimonial-card p {
  margin-bottom: 0;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-card span {
  margin-left: 8px;
  font-size: 0.95rem;
  color: #23647B;
  font-family: var(--font-body);
}

@media (max-width: 900px) {
  .features-grid, .card-container, .content-grid, .blog-list {
    gap: 18px;
  }
}

/* ------------------------------------ */
/*  SPACING & ARTISTIC SEPARATORS        */
/* ------------------------------------ */
.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;
}

/* ------------------------------------ */
/* BUTTONS & INTERACTIVE EFFECTS        */
/* ------------------------------------ */
button, .btn-primary {
  outline: none;
}
button {
  font-family: var(--font-display);
  font-size: 1.07rem;
  border: none;
  cursor: pointer;
}
.btn-secondary, .btn-outline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--border-radius);
  padding: 10px 24px;
  margin-left: 10px;
  transition: var(--transition);
}
.btn-secondary:hover, .btn-outline:hover, .btn-secondary:focus {
  background: var(--primary);
  color: #fff !important;
}

/* Artistic buttons */
.btn-primary {
  box-shadow: 0 3px 20px 0 rgba(60,193,198,0.10),
    0 2px 10px 0 rgba(35,59,119,0.03);
  background: linear-gradient(93deg, #233B77 78%, #3CC1C6 122%);
  border: none;
  letter-spacing: 0.03em;
}
.btn-primary:active { box-shadow: none; opacity: 0.85; }

/* Micro interaction for artistic hover */
.btn-primary::after {
  content: '';
  position: absolute;
  bottom: 10px; left: 50%;
  width: 80%; height: 3px;
  background: var(--secondary);
  filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s;
  transform: translateX(-50%);
  z-index: 0;
}
.btn-primary:hover::after, .btn-primary:focus::after {
  opacity: 0.48;
}

/* ------------------------------------ */
/* BLOG FILTER / INPUTS                 */
/* ------------------------------------ */
.blog-filters {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.blog-filters input, .blog-filters select {
  padding: 11px 14px;
  border: 2px solid #cfecee;
  border-radius: var(--radius-small);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: border .17s;
}
.blog-filters input:focus, .blog-filters select:focus {
  border-color: var(--secondary);
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-list article {
  flex: 1 1 310px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
  padding: 20px 18px 22px 18px;
  min-width: 220px;
  transition: box-shadow .22s, transform .17s;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 26px;
}
.blog-list article:hover {
  box-shadow: 0 10px 32px 0 rgba(60,193,198,0.17);
  transform: translateY(-3px);
}
.blog-list h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.12rem;
}
.blog-list a {
  margin-top: 10px;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ------------------------------------ */
/* FOOTER                               */
/* ------------------------------------ */
footer {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 40px 0 26px 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 -3px 30px 0 rgba(60,193,198,0.07);
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
footer nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.95;
  transition: color .17s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
  opacity: 1;
}
footer address {
  font-style: normal;
  font-size: 0.99rem;
  color: #e2eaff;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer img {
  max-height: 48px;
}
footer span {
  font-size: .93rem;
  color: #99c5e4;
  margin-top: 4px;
}
@media (max-width: 860px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ------------------------------------ */
/* COOKIE CONSENT BANNER & MODAL        */
/* ------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 8px;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: 400;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 18px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 -2px 30px 0 rgba(35,59,119,.15);
  font-size: 1.02rem;
  gap: 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s, bottom .19s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  bottom: 0;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-left: 16px;
}
.cookie-banner .btn-accept {
  background: var(--secondary);
  color: var(--primary);
  padding: 10px 25px;
  border-radius: var(--radius-small);
  font-weight: 600;
  border: none;
  margin-right: 6px;
  transition: var(--transition);
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: #fff;
  color: var(--primary);
}
.cookie-banner .btn-reject {
  background: #e6f5f6;
  color: var(--primary);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-small);
  font-weight: 600;
  transition: var(--transition);
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #fff;
}
.cookie-banner .btn-settings {
  background: transparent;
  color: #fff;
  padding: 8px 17px;
  border: 1.7px solid #fff;
  border-radius: var(--radius-small);
  font-weight: 500;
  margin-left: 10px;
  transition: var(--transition);
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  border-color: var(--secondary);
  color: var(--secondary);
}

/* ------------------ COOKIE MODAL --------------------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,59,119,0.28);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.visible {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 42px 0 rgba(35,59,119,0.16);
  padding: 34px 30px 22px 30px;
  max-width: 420px;
  width: 97vw;
  z-index: 600;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalFadeIn .37s cubic-bezier(.36,1.14,.95,1.13) 1;
}
@keyframes modalFadeIn {
  0% { opacity: 0; transform: scale(0.82) translateY(65px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.24rem;
  font-family: var(--font-display);
  margin-bottom: 7px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1.06rem;
  color: #233B77;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}
.cookie-category .always-enabled {
  color: var(--secondary);
  font-size: 0.98em;
  font-weight: 600;
  padding-left: 3px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 5px;
}
.cookie-modal-actions button {
  padding: 10px 22px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-small);
  font-family: var(--font-display);
  font-weight: 600;
  transition: var(--transition);
  margin-left: 0;
}
.cookie-modal-actions .btn-save {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal-actions .btn-cancel {
  background: #e6f5f6;
  color: var(--primary);
}
.cookie-modal-actions button:hover,
.cookie-modal-actions button:focus {
  background: var(--primary);
  color: #fff;
}

/* =========================================================== */
/*  RESPONSIVE DESIGN  (MOBILE-FIRST)                          */
/* =========================================================== */
@media (max-width: 768px) {
  main, section { padding: 0; }
  section {
    padding: 18px 6px 26px 6px;
    margin-bottom: 42px;
    min-width: 0;
  }
  .container {
    padding: 0 7px;
    max-width: 100vw;
  }
  .content-wrapper,
  .features-grid, .card-container, .blog-list, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid > div, .card, .blog-list article {
    min-width: auto;
    width: 100%;
    margin-bottom: 18px;
    padding: 17px 10px 14px 13px;
  }
  .testimonial-card { padding: 15px 12px; font-size: .98rem; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  header .container { padding: 0 8px; }
  .btn-primary, .btn-secondary, .btn-outline {
    margin-left: 0;
    width: 100%;
    min-width: 0;
    text-align: center;
    padding: 13px 0;
    margin-bottom: 11px;
    font-size: 1.06rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 6px 19px 6px;
    font-size: 0.99rem;
  }
}

/* Force no grid layout anywhere */
[class*="grid"], [class*="columns"] {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px;
  grid-template-columns: initial !important;
  grid-area: initial !important;
  column-count: initial !important;
}

/* Hide scrollbars for artistic effect on menu/panels */
.mobile-menu, .cookie-modal { scrollbar-width: thin; }
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  width: 6px; background: #e6f5f6;
}
.mobile-menu::-webkit-scrollbar-thumb, .cookie-modal::-webkit-scrollbar-thumb {
  background: #3CC1C6; border-radius: 16px;
}

/* ====================================== */
/* Artistic Accents for 'creative_artistic' */
/* ====================================== */
section:after {
  content: '';
  display: block;
  height: 4px;
  width: 52px;
  background: linear-gradient(90deg, #3CC1C6, #233B77);
  border-radius: 2.5px;
  margin: 35px auto 0 auto;
}

@media (max-width: 580px) {
  section:after { display: none; }
}

section:last-child:after {
  display: none;
}

/* Decorative playful blobs (svg can be added into HTML), eg.
.blob-decor {
  position: absolute;
  z-index: 0;
  width: 160px; height: 130px;
  filter: blur(9px);
  opacity: 0.49;
  pointer-events: none;
}
*/

/* Subtle hover scale & color pulse on artistic 'features' images */
.features-grid img, .features-grid svg {
  filter: drop-shadow(0 2px 13px #e6fafe);
  border-radius: var(--radius-small);
  transition: transform .18s, filter .22s;
  background: linear-gradient(89deg, #f2f4f8 55%, #e6fafe 100%);
  padding: 8px;
}
.features-grid > div:hover img,
.card:hover img {
  transform: scale(1.08) rotate(-5deg);
  filter: drop-shadow(0 10px 26px #3CC1C699);
}

/* CHARACTERISTIC ARTISTIC FONT FOR QUOTES */
.testimonial-card p, blockquote {
  font-family: 'Montserrat', cursive, var(--font-display), Arial, sans-serif;
}

@media (max-width: 480px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.02rem; }
  .footer .container, .container { padding: 0 3px; }
}

/* Utility: Hide visually (for overlays, screenreaders, etc) */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* ========== MISC ========== */
::-webkit-input-placeholder { color: #b0bdca; }
::-moz-placeholder { color: #b0bdca; }
:-ms-input-placeholder { color: #b0bdca; }
::placeholder { color: #b0bdca; }

/* No overlap for all cards/sections */
.card, .features-grid > div, .testimonial-card, section, .content-wrapper > div {
  margin-bottom: 20px;
}

/* ========== END ========== */
