/* --------------------------------------------------
   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;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1F3A5C;
  background: #F5F7FA;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: inline-block; vertical-align: middle; }
button { font-family: inherit; font-size: 1rem; border: none; background: none; cursor: pointer; }

/* --------------------------------------------------
   BRAND COLOR & TYPOGRAPHY VARIABLES (fallbacks used)
-------------------------------------------------- */
:root {
  --primary: #1F3A5C;
  --secondary: #E7B84C;
  --accent: #F5F7FA;
  --danger: #FD6262;
  --success: #51C798;
  --grey: #ECECEC;
  --black: #172133;
  --white: #fff;
  --shadow: 0 4px 16px 0 rgba(31,58,92,0.10);
  --radius: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* --------------------------------------------------
   CONTAINER & SPACING UTILITIES (MOBILE-FIRST)
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  transition: box-shadow .23s, transform .19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px 0 rgba(31,58,92,0.13);
  transform: translateY(-3px) scale(1.025);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  max-width: 430px;
  flex: 1 1 220px;
  transition: box-shadow .2s, transform .16s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(31,58,92,0.12);
  transform: translateY(-2px) scale(1.017);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --------------------------------------------------
   TYPOGRAPHY — Unmistakably Playful_Dynamic
-------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin-bottom: 8px;
}
h1 { 
  font-size: 2.5rem; 
  line-height: 1.18; 
  color: var(--secondary); 
  text-shadow: 1px 2px 0px #ffe18c25;
  margin-top: 12px;
  margin-bottom: 18px;
  font-style: italic;
}
h2 {
  font-size: 2rem;  
  color: var(--primary);
  margin-top: 8px;
  margin-bottom: 20px;
}
h3 { 
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
}
h4, h5 {
  font-size: 1.1rem;
}
p, li, blockquote, td, th {
  font-family: var(--font-body);
  color: var(--primary);
  font-weight: 400;
  font-size: 1rem;
}
blockquote {
  font-family: var(--font-display);
  color: var(--primary);
  background: #FFFCE8;
  border-left: 5px solid var(--secondary);
  border-radius: 12px;
  font-size: 1.08rem;
  margin: 0 0 12px 0;
  padding: 13px 19px;
  font-style: italic;
}
strong, b { font-weight: 700; }

ul, ol {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* Fun playful bullet icons for features list */
ul li {
  padding-left: 0;
  position: relative;
  font-family: var(--font-body);
}
ul li img {
  width: 26px;
  height: 26px;
  margin-right: 8px;
  vertical-align: middle;
  background: #fffbe5;
  border-radius: 8px;
  box-shadow: 0 3px 10px #fdc13a33;
  padding: 2px;
}
ol {
  list-style: decimal inside;
}
ol li { margin-left: 11px; }

/* --------------------------------------------------
   BUTTONS & LINKS
-------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: 999px;
  box-shadow: 0 3px 16px 0 #fed76947;
  border: none;
  transition: background .18s, color .18s, box-shadow .17s, transform .18s;
  letter-spacing: 0.02em;
  margin-top: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  outline: none;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFD447;
  color: var(--primary);
  box-shadow: 0 8px 24px 0 #ffe18c59;
  transform: scale(1.04) translateY(-2px);
  text-decoration: underline wavy #1F3A5C45 1.5px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 2px 9px 0 #1f3a5c1a;
  border: none;
  transition: background .19s, color .17s, box-shadow .16s, transform .14s;
  margin-top: 7px;
  margin-bottom: 7px;
  cursor: pointer;
  outline: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #2d4972;
  color: #FFD447;
  box-shadow: 0 8px 18px 0 #1f3a5c33;
  transform: scale(1.04) translateY(-2px);
}

/* Animated underline links */
a, .link {
  position: relative;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus { color: var(--secondary); }
a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width .2s;
  position: absolute;
  left: 0;
  bottom: -1px;
}
a:hover:after, a:focus:after {
  width: 100%;
}

/* --------------------------------------------------
   HEADER & NAVIGATION  (Playful, Bright, Dynamic)
-------------------------------------------------- */
header {
  background: var(--primary);
  color: var(--secondary);
  width: 100%;
  box-shadow: 0 2px 18px #1f3a5c18;
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 20px 12px 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
header nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background .17s, color .16s;
}
header nav a:hover, header nav a:focus {
  background: #fffbe5;
  color: var(--primary);
}
header img {
  max-height: 44px;
}
header .btn-primary {
  margin: 0;
  font-size: 1rem;
  white-space: nowrap;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2.3rem;
  border-radius: 12px;
  padding: 6px 13px;
  box-shadow: 0 2px 9px #fed76938;
  margin-left: 12px;
  z-index: 1002;
  transition: background .17s, color .15s, box-shadow .13s, transform .14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD447;
  transform: scale(1.04) translateY(-1px);
}

/* MOBILE MENU (Overlay Side Drawer) */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 90vw;
  max-width: 370px;
  height: 100vh;
  background: var(--accent);
  box-shadow: -2px 0 30px #1f3a5c22;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.7,.35,.3,1.26);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 40px 24px 28px 30px;
  align-items: flex-start;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 17px;
  right: 20px;
  font-size: 2rem;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 10px;
  padding: 4px 11px;
  border: none;
  box-shadow: 0 2px 7px #fed7692c;
  transition: box-shadow .16s, background .13s;
  z-index: 1002;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD447;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  width: 100%;
  margin-top: 15px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--primary);
  background: #fffbe5;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: 0 2px 9px #fed76913;
  min-width: 75%;
  transition: background .16s, color .17s, transform .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.03);
}

/* Hide elements on mobile/desktop for menu behaviour */
@media (max-width: 991px) {
  header nav, header .btn-primary { display: none !important; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  header nav, header .btn-primary { display: flex !important; }
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  width: 100%;
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 -2px 12px #1f3a5c13;
  padding: 24px 0 16px 0;
  margin-top: 50px;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
footer nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background .13s, color .11s;
}
footer nav a:hover, footer nav a:focus {
  background: #fffbe5;
  color: var(--primary);
}
footer img { max-height: 35px; }
footer p {
  color: var(--accent);
  opacity: 0.95;
  font-size: 0.97rem;
}
@media (max-width: 768px) {
  footer .container { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* --------------------------------------------------
   HERO & SECTION STYLES (Playful, Dynamic)
-------------------------------------------------- */
section {
  background: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow .16s;
}
section:hover {
  box-shadow: 0 8px 30px 0 #e7b84c18;
}
section .container {
  gap: 0;
}

@media (max-width: 768px) {
  section { padding: 28px 8px; margin-bottom: 32px; }
}

/* Add a subtle animated background accent on hero */
section:first-of-type::before {
  content: '';
  display: block;
  position: absolute;
  top: -55px; left: -55px;
  width: 160px; height: 140px;
  z-index: 0;
  background: #fbe6a035;
  border-radius: 48% 52% 55% 45% / 51% 59% 41% 49%;
  animation: floatBlob 4.6s ease-in-out infinite alternate;
}
@keyframes floatBlob {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08,1.03) translateY(25px); }
}

section .content-wrapper { position: relative; z-index: 1; }

/* --------------------------------------------------
   CARDS, TESTIMONIALS, TABLES & CTAs
-------------------------------------------------- */
.card, .testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 24px;
  min-width: 220px;
  transition: box-shadow .2s, transform .15s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 24px 0 #FED76944;
  transform: translateY(-2px) scale(1.016);
}
.card img {
  border-radius: 12px;
}

.testimonial-card blockquote {
  color: var(--primary);
  background: #FFFCE8;
  border-left: 5px solid var(--secondary);
  border-radius: 12px;
  font-size: 1.07rem;
  margin: 0 0 6px 0;
  padding: 9px 15px;
  font-style: italic;
  min-width: 170px;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}
.testimonial-card strong {
  color: var(--primary);
  font-weight: 700;
}

/* Playful animated highlight for testimonial */
.testimonial-card::before {
  content: '\2728';
  position: absolute;
  top: 12px; right: 15px;
  font-size: 1.5rem;
  color: #E7B84C99;
  pointer-events: none;
  opacity: .43;
  animation: starFlash 2.2s infinite linear alternate;
}
@keyframes starFlash {
  0% { opacity: .28; transform: scale(1) rotate(-14deg);}
  100% { opacity: .53; transform: scale(1.08) rotate(14deg);}
}

/* Pricing table styles */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-bottom: 24px;
  overflow: hidden;
}
thead th {
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.07rem;
  border: none;
  padding: 14px 9px;
}
tbody td {
  padding: 13px 9px;
  border-bottom: 1px solid #f0e1b7;
  color: var(--primary);
  background: var(--white);
  font-size: 1rem;
}
tbody tr:last-child td {
  border-bottom: none;
}
table tr:hover td {
  background: #fffbe5;
  transition: background .16s;
}

/* --------------------------------------------------
   RESPONSIVE FLEX & SPACING ADJUSTMENTS
-------------------------------------------------- */
@media (max-width: 1023px) {
  .container { max-width: 95vw; }
}
@media (max-width: 900px) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column !important;
  }
  .testimonial-card { max-width: 100%; }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 18px;
    padding: 0;
  }
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    min-width: 100%;
    padding: 12px;
  }
}

/* --------------------------------------------------
   ANIMATED BUTTON MICRO-INTERACTIONS
-------------------------------------------------- */
.btn-primary, .btn-secondary {
  transition: box-shadow .20s, background .18s, color .19s, transform .17s;
  will-change: box-shadow, transform;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
}

/* Scroll animation for .section on appearance (optional, for extra playfulness) */
@media (prefers-reduced-motion: no-preference) {
  .section {
    opacity: 0;
    transform: translateY(40px);
    animation: sectionFadeIn 0.8s cubic-bezier(0.5,1.3,0.3,1.22);
    animation-fill-mode: forwards;
  }
  .section:nth-of-type(1) { animation-delay: .14s; }
  .section:nth-of-type(2) { animation-delay: .28s; }
  .section:nth-of-type(3) { animation-delay: .38s; }
  .section:nth-of-type(4) { animation-delay: .48s; }
  .section:nth-of-type(5) { animation-delay: .56s; }
}
@keyframes sectionFadeIn {
  to { opacity: 1; transform: none; }
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER & MODAL (Fixed Bottom)
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FFE18C;
  border-top: 3.5px solid var(--secondary);
  box-shadow: 0 -2px 30px #1f3a5c19;
  z-index: 1200;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 24px 15px 20px 15px;
  transition: transform .38s cubic-bezier(.61,.38,.34,1.17),opacity .31s;
  opacity: 1;
  transform: translateY(0);
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(140%);
  pointer-events: none;
}
.cookie-banner p {
  flex: 1 1 60%;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary,
.cookie-banner .btn-settings {
  font-size: .98rem;
  margin: 0 3px;
  min-width: 105px;
  padding: 10px 20px;
  border-radius: 24px;
  border: none;
}
.cookie-banner .btn-settings {
  background: var(--primary);
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 3px;
  transition: background .14s, color .13s;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #31486a;
  color: var(--secondary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: .99rem;
    padding: 13px 5px 13px 7px;
  }
}

/* COOKIE CONSENT MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(31,58,92,0.24);
  z-index: 1310;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-dialog {
  background: #FFFCE8;
  border-radius: var(--radius);
  box-shadow: 0 8px 44px #e7b84c2e;
  min-width: 300px;
  max-width: 96vw;
  width: 370px;
  padding: 34px 25px 20px 25px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: modalPop .36s cubic-bezier(.6,-0.25,.19,1.13);
}
@keyframes modalPop {
  0% { transform: scale(.88) translateY(40px); opacity: .8; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.36rem;
  background: var(--danger);
  color: var(--white);
  border-radius: 7px;
  border: none;
  padding: 2px 10px;
  cursor: pointer;
  box-shadow: 0 2px 9px #fd626229;
  transition: background .13s;
}
.cookie-modal-close:hover { background: #e05050; }

.cookie-categories {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
  cursor: pointer;
}
.cookie-toggle {
  width: 34px;
  height: 20px;
  border-radius: 16px;
  background: #ececec;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  border: 1px solid #d9dbe1;
}
.cookie-toggle input { display: none; }
.cookie-toggle span {
  display: block;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  left: 2px;
  transition: left .21s, background .18s;
}
.cookie-toggle input:checked + span {
  left: 16px;
  background: var(--secondary);
}
.cookie-category.essential label { opacity: 0.78; color: var(--primary); }
.cookie-category.essential .cookie-toggle { opacity: 0.47; pointer-events: none; }

.cookie-modal-actions {
  margin-top: 19px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .btn-primary,
.cookie-modal .btn-secondary {
  margin: 0;
  min-width: 110px;
  font-size: 1rem;
}

/* --------------------------------------------------
   GENERAL RESPONSIVE TWEAKS
-------------------------------------------------- */
@media (max-width: 480px) {
  h1 { font-size: 1.27rem; }
  h2 { font-size: 1.12rem; margin-bottom: 10px; }
  .container { padding: 0 7px; }
  .card, .testimonial-card, section, .section { padding: 10px 3px; }
}

/* Form elements (if any needed in CTA/Contact) */
input, textarea, select {
  border: 1.3px solid #ececec;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 14px;
  box-shadow: 0 2px 10px #e7b84c18;
  transition: border .13s;
  background: #fff;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border: 1.6px solid var(--secondary);
}

/* --------------------------------------------------
   EXTRAS — ICONS, BADGES, ETC.
-------------------------------------------------- */
.icon-badge {
  background: var(--secondary);
  color: var(--primary);
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  box-shadow: 0 2px 7px #ffe18c45;
  margin-left: 8px;
  margin-bottom: 4px;
  vertical-align: middle;
}

/* --------------------------------------------------
   SCROLLBAR STYLES (MATCH BRAND)
-------------------------------------------------- */
html {
  scrollbar-width: thin;
  scrollbar-color: #E7B84C #F5F7FA; 
}
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient( to bottom, #fed769 74%, #fcf2d9 100% );
  border-radius: 999px;
}
::-webkit-scrollbar-track {
  background: #F5F7FA;
}

/* --------------------------------------------------
   PRINTABLE PAGE TWEAK (optional)
-------------------------------------------------- */
@media print {
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
  section, .container, .card, .testimonial-card { box-shadow: none !important; background: #fff !important; }
}
