/* =======================================================
   CSS RESET & NORMALIZE (Modern clean 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;
}
html {
  scroll-behavior: smooth;
  min-height: 100%;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #24324E;
  min-height: 100vh;
  overflow-x: hidden;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
button {
  cursor: pointer;
  background: none;
}

/* =======================================================
   BRAND COLORS & PLAYFUL DYNAMIC VARIABLES (fallbacks)
======================================================= */
:root {
  --primary: #103B60;
  --secondary: #F4D35E;
  --accent: #FFFFFF;
  --fun-blue: #3282ff;
  --playful-pink: #FD6495;
  --mint-green: #37E0A8;
  --bright-orange: #FFB964;
  --shadow: rgba(30,54,90,0.13);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 32px;
  --transition: 0.25s cubic-bezier(.5,1.5,.6,1.2);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* Web Fonts import for Montserrat and Roboto */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* =======================================================
   TYPOGRAPHY – playful, fun, energetic
======================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 2px 1px var(--secondary),0px 4px 12px rgba(250,200,80,0.06);
}
h1 {
  font-size: 2.4rem;
  line-height: 1.13;
  margin-bottom: 24px;
  letter-spacing: -1.6px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 6px;
}
p {
  font-size: 1.075rem;
  color: #282828;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  color: var(--fun-blue);
}
.text-section h3 {
  color: var(--playful-pink);
}

/* playful dynamic style for links and micro-interactions */
a:hover, .main-nav a:hover, .footer-nav a:hover,
.mobile-nav a:hover, .social-links a:hover {
  color: var(--playful-pink);
  text-decoration: underline wavy var(--secondary) 2px;
  transition: color var(--transition);
}
.cta-btn:active {
  transform: scale(0.96);
}

/* =======================================================
   LAYOUT BASICS & SPACING (MANDATORY FLEX LAYOUTS)
======================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px var(--shadow);
  padding: 32px 24px;
  min-width: 250px;
  transition: box-shadow .22s, transform .2s;
}
.card:hover {
  transform: translateY(-4px) scale(1.03) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(27,56,120,.15);
  z-index: 3;
}
.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: #fffbea;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(27,56,120,0.07);
  min-width: 270px;
  margin-bottom: 20px;
  font-style: italic;
  color: #232323;
  position: relative;
  border-left: 8px solid var(--playful-pink);
  transition: box-shadow .18s;
}
.testimonial-card strong {
  margin-left: auto;
  font-style: normal;
  color: var(--primary);
  letter-spacing: .5px;
  font-size: 1.07em;
}
.testimonial-card:hover {
  background: #ffe2ec;
  border-left-color: var(--mint-green);
  box-shadow: 0 12px 42px rgba(27,56,120,0.12);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--mint-green);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 20px;
}

/* General spacing for all content cards/sections */
section {
  margin-bottom: 60px;
  padding: 40px 20px 0 20px;
  width: 100%;
}
ul.feature-grid, .features ul, .services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}
.features ul li, .feature-grid li {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(16,59,96,0.09);
  padding: 28px 22px 20px 22px;
  min-width: 230px;
  max-width: 340px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .19s;
  color: var(--primary);
}
.features ul li img, .feature-grid li img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.features ul li:hover, .feature-grid li:hover {
  background: var(--mint-green);
  box-shadow: 0 10px 30px rgba(50,130,255,0.11);
  color: var(--fun-blue);
  transform: scale(1.03) rotate(2deg);
  z-index: 2;
}

/* playful list styles inside features */
.features ul li strong {
  color: var(--playful-pink);
}
.services ul li {
  border-left: 5px solid var(--fun-blue);
  border-radius: var(--radius-sm);
  background: #eaf8ff;
  margin-bottom: 20px;
  padding: 20px 18px 14px 28px;
  transition: box-shadow .14s;
  box-shadow: 0 2px 12px rgba(16,59,96,0.10);
}
.services ul li:hover {
  background: #fffbea;
  border-left-color: var(--bright-orange);
  box-shadow: 0 6px 22px rgba(255,182,100,.12);
}

/* -------------------------------------------------------
   Process Timeline for methodology
-------------------------------------------------------- */
.process-timeline ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding-top: 20px;
}
.process-timeline li {
  background: var(--fun-blue);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  text-align: left;
  font-weight: 700;
  position: relative;
  margin-bottom: 10px;
  min-width: 185px;
  box-shadow: 0 2px 10px rgba(50,130,255,0.08);
}

/* -------------------------------------------------------
   Hero Section (with animation and fun accents)
-------------------------------------------------------- */
.hero {
  background: linear-gradient(90deg, var(--secondary) 75%, var(--mint-green) 100%);
  padding-bottom: 16px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero .container, .hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: var(--playful-pink);
  text-shadow: 0 2px 8px #fff4ec,0 1px 1px #fffbead3;
}
.hero p {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 32px;
  letter-spacing:.2px;
}
.hero .cta-btn {
  font-size: 1.15rem;
  font-family: var(--font-display);
  margin-top: 8px;
}
/* playful accent shape */
.hero:after {
  content: '';
  display: block;
  position: absolute;
  top: -60px; right: -100px;
  width: 220px; height: 220px;
  background: var(--playful-pink);
  border-radius: 50%;
  opacity: 0.13;
  z-index: 1;
  animation: blobRotate 12s infinite linear;
  pointer-events:none;
}
@keyframes blobRotate {
  from { transform: rotate(0deg) scale(1.02); }
  to { transform: rotate(360deg) scale(1.04); }
}

/* =======================================================
   BUTTONS (playful, bouncy, modern CTA)
======================================================= */
.cta-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--fun-blue);
  color: #fff;
  font-size: 1.09rem;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 32px;
  padding: 13px 38px;
  box-shadow: 0 2px 12px var(--shadow);
  margin-top: 18px;
  margin-bottom: 10px;
  border: none;
  letter-spacing: .7px;
  transition: background .18s, color .15s, transform .15s, box-shadow .18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--mint-green);
  color: var(--primary);
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 4px 26px rgba(253,100,149,.16);
}

/* 
============================================
 HEADER & NAVIGATION
============================================ */
header {
  background: #fff;
  box-shadow: 0 3px 18px rgba(27,90,160,0.07);
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 12px 12px;
  gap: 16px;
}
.logo-container {
  min-width: 115px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-container img {
  height: 48px;
  transition: transform .16s;
}
.logo-container img:hover {
  transform: rotate(-8deg) scale(1.04);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-family: var(--font-display);
}
.main-nav li a {
  padding: 8px 17px;
  font-size: 1rem;
  color: var(--primary);
  border-radius: 20px;
  font-weight: 700;
  transition: background .13s, color .12s;
}
.main-nav li a:hover, .main-nav li a:focus {
  background: var(--secondary);
  color: var(--playful-pink);
}
nav .cta-btn {
  margin-left: 14px;
  margin-top: 0px;
}

/* Hide mobile burger menu by default */
.mobile-menu-toggle {
  display: none;
  background: var(--fun-blue);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 102;
  box-shadow: 0 2px 14px var(--shadow);
  border:none;
  margin-left: 8px;
  transition: background .12s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--mint-green);
  color: var(--primary);
}

/* Mobile menu overlay (slides in) */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,59,96,0.98);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100vw);
  transition: transform .33s cubic-bezier(.79,1,-0.1,1.04);
  z-index: 9999;
  box-shadow: -3px 0 36px rgba(16,59,96,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #fff;
  background: none;
  border: none;
  margin: 36px 32px 18px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color .14s;
  z-index: 10002;
}
.mobile-menu-close:hover {
  color: var(--secondary);
  text-shadow: 0 2px 6px var(--playful-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  padding: 0 36px 16px 36px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.32rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 13px 0;
  border-radius: 8px;
  width: 100%;
  text-align: right;
  transition: background .16s, color .13s;
  margin-bottom:8px;
}
.mobile-nav a:hover {
  background: var(--playful-pink);
  color: #fff;
  padding-left: 12px;
}

@media(max-width:1200px){.container{padding:0 7vw;}}
@media(max-width:992px){
  nav {
    max-width:100vw; padding:12px 8px;
  }
  .main-nav {gap: 8px;}
}
@media (max-width: 768px) {
  .main-nav,
  nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

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

/*
============================================
FOOTER
============================================*/
footer {
  background: var(--primary);
  color: #fff;
  width: 100%;
  padding-top: 18px;
  font-size: 1rem;
}
footer section {
  background: transparent;
  margin-bottom: 0;
  padding: 22px 0 0 0;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 24px;
  justify-content: center;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  opacity: .93;
  font-family: var(--font-display);
  font-size: 1.04em;
  font-weight: 700;
  transition: color .13s, opacity .14s;
}
.footer-nav a:hover { color: var(--secondary); opacity: 1;}
.social-links {
  display: flex;
  flex-direction: row;
  gap:20px;
  margin-bottom:16px;
  justify-content:center;
}
.social-links a img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 3px 5px rgba(255,255,0,0.08));
  transition: transform .13s;
}
.social-links a:hover img {
  transform: scale(1.2) rotate(12deg);
}
.contact-information {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  margin-top: 8px;
  font-size: 1em;
  color: #fff;
  opacity: .92;
  text-align:center;
}
.contact-information p img {
  vertical-align: middle;
  /* fix for alignment */
  margin-bottom: 2px;
  width: 18px;
  height: 18px;
}

/*
============================================
BLOG & POLICY PAGES
============================================*/
.blog-list h3 {
  color: var(--fun-blue);
  font-size: 1.16rem;
  margin-top:18px;
}
.policy, .policy .text-section {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.75;
}
.policy h1,
.policy h2 {
  color: var(--fun-blue);
  margin-bottom: 18px;
}
.policy ul li {
  margin-left: 18px;
  padding-left: 8px;
  list-style: disc inside;
}
.thank-you {
  text-align: center;
}

/*
============================================
TABLE STYLES (Comparativa Cursos)
============================================*/
table {
  width: 100%;
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin:32px 0 24px 0;
  font-size: 1rem;
  box-shadow: 0 1px 10px rgba(50,130,255,.08);
}
th, td {
  padding: 13px 8px;
  text-align: center;
  border-bottom: 1px solid #eef4fa;
}
th {
  background: var(--mint-green);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
}
tr:last-child td {border-bottom: none;}

/*
============================================
RESPONSIVE STYLES & FLEXBOX PATTERNS
============================================*/
@media (max-width: 992px) {
  .feature-grid, .features ul {
    flex-direction: column;
    align-items: center;
  }
  .features ul li, .feature-grid li {
    max-width: 99vw;
    min-width: 210px;
  }
  nav { padding: 9px 2vw; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6vw;
  }
  .content-grid, .card-container, .feature-grid, .features ul, .services ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .section, section {
    padding: 28px 8px 0 8px;
    margin-bottom: 44px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  nav {
    flex-direction: row;
    padding: 6px 6vw; 
    gap: 6px;
  }
}

/*
============================================
CARD, TESTIMONIAL, TEAM COMPONENTS
============================================*/
.team .text-section h3 {
  color: var(--bright-orange);
  margin-top: 20px;
}
.team .text-section p {
  font-size: 1.05em;
}

/* testimonial slider for homepage */
.testimonial-slider {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  justify-content: center;
}
@media(max-width:768px){
  .testimonial-slider {
    flex-direction: column;
    gap:20px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
  }
}

/*
============================================
COOKIE CONSENT BANNER
============================================*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: var(--playful-pink);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.05em;
  z-index: 99999;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.08);
  border-radius: 24px 24px 0 0;
  padding: 28px 10vw 20px 10vw;
  animation: cookie-banner-in .36s cubic-bezier(.91,1.2,.56,1.0) both;
}
@keyframes cookie-banner-in { from { transform: translateY(120%); opacity:0; } to { transform: translateY(0); opacity:1;} }
.cookie-banner p {
  color:#fff;
  margin-bottom: 15px;
  text-align: center;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap:14px;
  margin-bottom: 0;
}
.cookie-banner button {
  font-family: var(--font-display);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  padding: 10px 22px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: bold;
  margin: 0 2px;
  transition: background .18s,color .16s,transform .14s;
  box-shadow: 0 2px 16px rgba(253,100,149,0.08);
}
.cookie-banner button:hover {
  background: var(--mint-green);
  color: var(--playful-pink);
  transform: scale(1.06) rotate(-2deg);
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: var(--playful-pink);
  border: 2px solid var(--playful-pink);
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--playful-pink);
  color: #fff;
}
@media(max-width:768px){
  .cookie-banner {padding:18px 6vw 14px 6vw; font-size: 1em;}
  .cookie-banner .cookie-btn-group {flex-direction:column;gap:8px;}
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  color: var(--primary);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -8px 42px rgba(50,130,255,0.16);
  z-index: 100010;
  padding: 32px 30px 20px 30px;
  animation: cookie-modal-in .36s cubic-bezier(.91,1.2,.56,1.0) both;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@keyframes cookie-modal-in { from {transform: translateY(120%); opacity:0;} to {transform: translateY(0); opacity:1;} }
.cookie-modal h2 {
  margin-bottom: 13px;
  color: var(--primary);
  font-size: 1.16rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-sm);
  background: #f0f4f8;
  margin-bottom: 14px;
  padding: 12px 14px;
  font-size: 1.03em;
}
.cookie-modal .cookie-switch {
  position: relative;
  width: 46px;
  height: 26px;
  display: flex;
  align-items: center;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  background: var(--secondary);
  border-radius: 18px;
  width: 46px; height: 24px;
  transition: background 0.2s;
}
.cookie-modal .cookie-switch input:checked + .slider {
  background: var(--mint-green);
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 4px; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--fun-blue);
  transition: transform 0.2s cubic-bezier(.71,1.5,.65,1.1);
}
.cookie-modal .cookie-switch input:checked + .slider:before {
  transform: translateX(20px);
  background: var(--playful-pink);
}
.cookie-modal .cookie-category.disabled .slider {
  filter: grayscale(80%);
  background: #e5e5e5;
}
.cookie-modal .cookie-category.disabled .slider:before {
  background: #aaa;
}
.cookie-modal .close-modal {
  background: var(--playful-pink);
  color: #fff;
  border-radius: 16px;
  padding: 10px 24px;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-top: 18px;
  transition: background .14s, color .14s;
  align-self: flex-end;
}
.cookie-modal .close-modal:hover {
  background: var(--mint-green);
  color: var(--primary);
}
@media(max-width:520px){
  .cookie-modal {max-width:100vw; border-radius:18px 18px 0 0; padding:20px 10px;}
}

/*
============================================
MISC/ANIMATED/PLAYFUL DECORATIONS
============================================*/
.card::before {
  content: '';
  display: block;
  position: absolute;
  top: -16px;
  left: -20px;
  width: 46px; height: 46px;
  background: var(--playful-pink);
  opacity: 0.11;
  border-radius: 50%;
  z-index: 0;
}
.card:hover::before {
  opacity: 0.18;
}
.feature-item::after {
  content: '';
  display: block;
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 32px; height: 32px;
  background: var(--mint-green);
  opacity: 0.13;
  border-radius: 50%;
  z-index: 0;
}

/* playful checkmark for lists */
ul li:before, .features ul li:before, .feature-grid li:before {
  content: '';
  display: inline-block;
  margin-right: 8px;
  margin-top: 0;
  width: 12px; height: 12px;
  background: var(--mint-green);
  border-radius: 50%;
  vertical-align: middle;
}
.features ul li:before, .feature-grid li:before {background:var(--bright-orange);}

/* Remove checkmark from list with icons */
.features ul li img + h3:before,
.feature-grid li img + h3:before {
  display:none;
}

/*
============================================
ACCESSIBILITY: FOCUS & CONTRAST
============================================*/
:focus-visible {
  outline: 2px solid var(--fun-blue);
  outline-offset: 2px;
}

.testimonial-card, .testimonial-card p, .testimonial-card strong {
  color: #212124;
  background: none;
}
/* Increase readability for testimonial content cards */
.testimonials .testimonial-card {
  background: #fff8de;
  border-left: 8px solid var(--bright-orange);
}
.testimonials .testimonial-card strong {
  color: var(--fun-blue);
}

/*
============================================
UTILITIES
============================================*/
.text-center {
  text-align: center !important;
}

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