/* === 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: inherit; vertical-align: baseline;
  box-sizing: border-box;
}
html { line-height: 1.5; font-size: 16px; }
body { background: #F8FCFF; color: #101926; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
button, input, select, textarea { font-family: inherit; font-size: 100%; margin: 0; }
table { border-collapse: collapse; border-spacing: 0; }
:focus { outline: 2px solid #85B74A; outline-offset: 2px; }

/* === BRAND & TYPOGRAPHY === */
:root {
  --color-primary: #275A87;
  --color-primary-dark: #244E73;
  --color-secondary: #85B74A;
  --color-accent: #F6C36C;
  --color-bg: #F8FCFF;
  --color-bg-dark: #14242F;
  --color-card: #FFFFFF;
  --color-card-dark: #244E73;
  --color-neon-blue: #19C3FF;
  --color-neon-green: #5AFFB3;
  --color-neon-yellow: #FCFFC7;
  --color-footer: #27405C;
  --color-border: #E6EAF0;
  --color-text: #101926;
  --color-text-invert: #FFF;
  --radius-card: 18px;
  --radius-btn: 28px;
  --shadow-card: 0 4px 32px 0 rgba(36,78,115,0.08);
  --shadow-elevated: 0 6px 40px 0 rgba(22,62,126,0.10);
  --font-display: "Noto Sans JP", Yu Gothic, sans-serif;
  --font-body: Yu Gothic, "Noto Sans JP", sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  background: linear-gradient(120deg, #F8FCFF 70%, #E6F1FC 100%);
  min-height: 100vh;
  color: var(--color-text);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.2rem; letter-spacing: .02em; margin-bottom: 24px; color: var(--color-primary-dark); }
h2 { font-size: 1.7rem; margin-bottom: 20px; color: var(--color-primary-dark); }
h3 { font-size: 1.2rem; margin-bottom: 16px; color: var(--color-primary); }
h4 { font-size: 1.1rem; color: var(--color-primary); margin-bottom: 8px; }
p, ul, ol, li { font-size: 1rem; margin-bottom: 12px; }

strong, b { color: var(--color-primary); }

/* === UTILITY FLEX CONTAINERS === */
.container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container,
.card-grid,
.program-cards,
.team-grid,
.feature-grid,
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .program-card, .blog-card, .testimonial-card, .event-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;
}

/* === HEADER & NAVIGATION === */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(39,90,135,0.06);
  position: sticky; top: 0;
  z-index: 100;
  width: 100vw;
}
header .container {
  padding: 20px 18px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
header img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  padding: 7px 18px;
  font-size: 16px;
  border-radius: var(--radius-btn);
  color: var(--color-primary);
  transition: background .2s, color .2s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-accent);
  color: #27405C;
}
.header-cta {
  background: var(--color-primary);
  color: #fff;
  padding: 9px 30px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 16px;
  margin-left: 12px;
  box-shadow: 0 2px 18px 0 rgba(36,94,139,0.16);
  letter-spacing: 0.04em;
  border: none;
  transition: background .2s, color .2s, transform .12s;
  cursor: pointer;
  display: inline-block;
  outline: none;
  position: relative;
}
.header-cta:hover, .header-cta:focus {
  background: var(--color-neon-blue);
  color: #16305A;
  transform: translateY(-2px) scale(1.03);
}

/* === MOBILE NAV === */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 11px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 250;
  transition: background .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: #244E73;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(20,36,47,0.94);
  z-index: 240;
  transform: translateX(100vw);
  transition: transform .47s cubic-bezier(.68,-0.55,.27,1.55);
  padding-top: 62px;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: all;
}
.mobile-menu .mobile-menu-close {
  position: absolute;
  top: 20px; right: 26px;
  background: var(--color-neon-blue);
  color: #1B2D47;
  font-size: 2.2rem;
  border: none;
  border-radius: 11px;
  width: 48px; height: 48px;
  display: flex;
  align-items: center; justify-content: center;
  transition: background .18s;
  z-index: 260;
}
.mobile-menu .mobile-menu-close:hover,
.mobile-menu .mobile-menu-close:focus {
  background: var(--color-accent);
  color: #244E73;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px 26px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  padding: 12px 8px;
  border-radius: 10px;
  transition: background .14s;
  font-family: var(--font-display);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-neon-green);
  color: #182A41;
}
@media (max-width: 1000px) {
  header .container nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1001px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(120deg, var(--color-primary) 50%, var(--color-neon-blue) 120%);
  color: #fff;
  padding: 64px 0 48px 0;
  position: relative;
  width: 100vw;
  overflow: hidden;
}
.hero .container { flex-direction: column; }
.hero .content-wrapper {
  max-width: 540px;
  margin: 0 auto;
  gap: 18px;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: .03em;
  margin-bottom: 20px;
  text-shadow: 0 3px 18px rgba(17,154,255,0.12);
}
.hero p {
  font-size: 1.1rem;
  color: #D3ECFF;
  margin-bottom: 24px;
}
.hero .cta {
  background: linear-gradient(90deg,var(--color-accent), var(--color-neon-blue));
  color: #24282D;
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius-btn);
  padding: 13px 36px;
  box-shadow: 0 0 24px 0 rgba(1,210,255,0.12);
  letter-spacing: 2px;
  transition: background .23s, color .17s, transform .09s;
  margin-top: 9px;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.hero .cta:hover, .hero .cta:focus {
  background: linear-gradient(90deg,#FFF36B,#43D8FF);
  color: #052C54;
  transform: scale(1.04);
}

/* === FEATURE GRID / CARDS === */
.feature-grid > div {
  background: var(--color-card);
  padding: 30px 20px 24px 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 208px;
  min-height: 185px;
  flex: 1 1 220px;
  border: 2px solid transparent;
  transition: box-shadow .17s, border .18s;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 40px 0 rgba(27,196,255,0.12);
  border: 2px solid var(--color-neon-blue);
}
.feature-grid img {
  height: 38px; width: 38px;
  margin-bottom: 4px;
  filter: drop-shadow(0 3px 8px #D9FAFF);
}
.feature-grid h3 { margin: 0 0 8px 0; font-size: 1.18rem; color: var(--color-primary-dark); }
.feature-grid p { margin: 0; font-size: 1rem; color: #38506A; }

/* === PROGRAM CARDS === */
.program-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  padding: 28px 24px 20px 24px;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  flex: 1 1 220px;
  min-width: 220px;
  transition: box-shadow .18s, border .18s;
}
.program-card:hover {
  border: 2px solid var(--color-accent);
  box-shadow: 0 6px 40px rgba(246,195,108,0.13), var(--shadow-card);
}
.program-card h2 {
  color: var(--color-primary);
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.program-card p { color: #38506A; }

/* === BLOG CARDS === */
.blog-card {
  background: var(--color-card);
  padding: 24px 18px 18px 18px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: border .18s, box-shadow .18s;
  flex: 1 1 260px;
}
.blog-card:hover {
  border: 2px solid var(--color-neon-blue);
  box-shadow: 0 7px 30px #19C3FF25;
}

.blog-card h2 {
  color: var(--color-primary-dark); font-size: 1.17rem; margin-bottom: 9px;
}

/* === CATEGORY TAG === */
.categories, .category-tag {
  display: flex; flex-wrap: wrap; gap: 18px;
}
.category-tag {
  background: var(--color-neon-blue);
  color: #113255;
  font-weight: 600;
  border-radius: 999px;
  padding: 7px 20px;
  font-size: 14px;
  transition: box-shadow .16s, background .14s;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px #19C3FF29;
}
.category-tag:hover, .category-tag:focus {
  background: var(--color-neon-green);
  color: #245575;
}

/* === CTA BUTTONS === */
.cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-accent), var(--color-neon-blue) 80%);
  color: #182A41;
  border: none;
  border-radius: var(--radius-btn);
  padding: 12px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 1px;
  box-shadow: 0 3px 18px #F6C36C44, 0 1px 8px #19C3FF22;
  transition: background .19s, color .16s, transform .12s;
  cursor: pointer;
  margin-top: 8px;
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg,#FFF36B,#19C3FF);
  color: #244E73;
  transform: scale(1.04);
}

/* === TESTIMONIALS === */
.testimonial-slider, .events-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.testimonial-card {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 6px 40px rgba(39,90,135,0.08);
  border: 2px solid #C2E0FE;
  padding: 24px 30px 20px 30px;
  color: #101926;
  max-width: 380px;
  flex: 1 1 260px;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, border .16s;
  z-index: 1;
}
.testimonial-card span {
  display: block;
  margin-top: 10px;
  color: var(--color-primary);
  font-size: 0.98rem;
  font-weight: 600;
}
.testimonial-card:hover {
  border: 2px solid var(--color-neon-blue);
  box-shadow: 0 12px 48px 0 #19C3FF21, var(--shadow-card);
}

/* === TEXT SECTIONS === */
.text-section, .thank-section {
  background: var(--color-card);
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(39,90,135,0.06);
  padding: 24px 20px 20px 20px;
  margin-bottom: 12px;
  color: #244E73;
}
.text-section ul,
.text-section ol {
  margin: 8px 0 16px 30px;
  list-style-type: disc;
}
.text-section li {
  margin-bottom: 8px;
  color: #244E73;
  font-size: .98rem;
}

/* === FOOTER === */
footer {
  background: var(--color-footer);
  color: #fff;
  padding: 40px 0 15px 0;
  position: relative;
  width: 100vw;
  z-index: 1;
  margin-top: 64px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}
footer nav {
  display: flex; flex-direction: row; gap: 22px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 10px;
  transition: background .18s, color .18s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-accent);
  color: #244E73;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.96rem;
  color: #FFF;
  margin-top: 6px;
}
footer img {
  height: 46px; width: auto; margin-bottom: 8px;
}
footer small {
  margin-top: 16px;
  display: block;
  color: #dce5f8;
  font-size: 0.9rem;
  text-align: left;
}

/* === CONTACT DETAILS & MAP === */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.hours-list, .map-embed {
  background: var(--color-card);
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(39,90,135,0.07);
  margin-bottom: 18px;
  color: var(--color-primary-dark);
}
.map-embed h4 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 2px;
}

/* === FAQ & EVENT CARDS === */
.faq-list > div,
.events-list > div {
  background: var(--color-card);
  border-radius: 12px;
  box-shadow: 0 2px 12px #244E7322;
  padding: 22px 18px 16px 18px;
  flex: 1 1 250px;
  min-width: 240px;
}
.faq-list h3 { margin: 0 0 8px 0; font-size: 1.05rem; color: var(--color-primary-dark); }
.faq-list p { color: #244E73; font-size: 1rem; }

/* === TEAM CARD === */
.team-grid {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.team-grid > div {
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 22px 20px 17px 20px;
  min-width: 200px;
  flex: 1 1 220px;
  border: 2px solid transparent;
  margin-bottom: 20px;
  transition: border .17s, box-shadow .17s;
}
.team-grid > div:hover {
  border: 2px solid var(--color-neon-green);
  box-shadow: 0 8px 32px #5AFFB322;
}
.team-grid h3 { margin-bottom: 6px; font-size: 1.1rem; color: var(--color-primary); }
.team-grid h3 span { font-size: .93em; color: var(--color-accent); font-weight: 400; margin-left: 6px; }
.team-grid p { font-size: 1rem; color: #244E73; }

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg,#15304a 80%,#244E73);
  color: #fff;
  z-index: 1001;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  box-shadow: 0 -2px 16px #244E738e;
  width: 100vw;
  font-size: 1rem;
  gap: 20px;
  animation: fadein-btm .7s cubic-bezier(.4,.7,.34,1.16);
}
.cookie-banner.hide {
  display: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 280px;
  color: #fff;
  font-size: 1rem;
  margin-right: 18px;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button {
  border: none;
  border-radius: var(--radius-btn);
  padding: 9px 25px;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 0;
  letter-spacing: 0.03em;
  transition: background .17s, color .15s, transform .12s;
  box-shadow: 0 4px 18px #19C3FF10;
  background: var(--color-neon-blue);
  color: #1A304A;
  cursor: pointer;
}
.cookie-banner button.accept {
  background: var(--color-neon-green);
  color: #124243;
}
.cookie-banner button.reject {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: var(--color-accent);
  color: #244E73;
  transform: translateY(-2px) scale(1.03);
}

/***** COOKIE MODAL *****/
.cookie-modal-bg {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(16,27,48,0.81);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .36s;
  pointer-events: auto;
}
.cookie-modal-bg.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal {
  background: linear-gradient(120deg, #224364 60%, #284C77 100%);
  color: #fff;
  padding: 40px 30px 28px 30px;
  border-radius: 22px;
  box-shadow: 0 4px 40px 0 #19C3FF39;
  min-width: 320px;
  max-width: 94vw;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  animation: popin .35s cubic-bezier(.67,-0.28,.6,1.47);
}
.cookie-modal h2 {
  color: var(--color-neon-blue);
  font-size: 1.23rem;
  margin-bottom: 8px;
}
.cookie-modal h3 {
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-neon-blue);
  box-shadow: 0 1px 5px #19C3FF10;
  width: 18px; height: 18px;
}
.cookie-modal .modal-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 13px;
  background: var(--color-accent);
  color: #223242;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .19s;
}
.cookie-modal .close-modal:focus,
.cookie-modal .close-modal:hover {
  background: var(--color-primary);
  color: #fff;
}

/***** ANIMATIONS *****/
@keyframes popin {
  0% { transform: scale(0.95) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes fadein-btm {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/**** THANK YOU PAGE ****/
.thank-section nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}
.thank-section nav a {
  color: var(--color-primary);
  background: #F1F8FF;
  border-radius: 12px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 1rem;
  transition: background .18s, color .15s;
}
.thank-section nav a:hover, .thank-section nav a:focus {
  background: var(--color-neon-blue);
  color: #fff;
}

/**** GENERAL BUTTONS ****/
button, .button {
  font-family: var(--font-display);
  background: var(--color-primary);
  color: #FFF;
  border: none;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 24px;
  transition: background .15s, color .13s, transform .11s;
  cursor: pointer;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: var(--color-accent);
  color: #244E73;
  transform: scale(1.02);
}

/**** RESPONSIVE DESIGN ****/
@media (max-width: 900px) {
  .container{
    max-width: 96vw;
    padding-left: 8px; padding-right: 8px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .feature-grid, .program-cards, .events-list, .faq-list, .team-grid, .blog-list {
    flex-direction: column;
    align-items: stretch;
  }
  .content-wrapper { gap: 18px; }
  .testimonial-slider {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .content-wrapper { padding: 0 0 0 0; gap: 13px; }
}
@media (max-width: 768px) {
  .hero {
    padding: 44px 0 34px 0;
    text-align: left;
  }
  .container {
    max-width: 99vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .section, .content-wrapper { padding: 26px 4vw; }
  .feature-grid > div,
  .program-card,
  .blog-card,
  .testimonial-card,
  .event-card,
  .team-grid > div {
    min-width: 0;
  }
  .text-image-section { flex-direction: column; }
  .footer-contact { font-size: .93rem; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 7vw 17px 7vw;
    gap: 13px;
    font-size: .97rem;
  }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 1.18rem; }
  .section, .content-wrapper { padding: 14px 0; }
  .testimonial-card, .program-card, .feature-grid > div, .blog-card, .event-card { padding: 14px 8px; font-size: .97rem; }
  .cookie-modal { padding: 18px 6vw 21px 6vw; min-width: 0; }
  .cookie-modal h2 { font-size: 1rem; }
}

/***** MISC STYLE FIXES *****/
::-webkit-scrollbar {
  width: 12px;
  background: #EEF5FC;
}
::-webkit-scrollbar-thumb {
  background: #D9E6F8;
  border-radius: 16px;
}
::-webkit-input-placeholder { color: #B2C4DE; }
::-moz-placeholder { color: #B2C4DE; }
:-ms-input-placeholder { color: #B2C4DE; }
::placeholder { color: #B2C4DE; }

/***** VISUAL MICRO-INTERACTIONS *****/
.card, .program-card, .feature-grid > div, .blog-card, .testimonial-card {
  transition: box-shadow .16s, border .13s, transform .11s;
}
.card:hover, .program-card:hover, .feature-grid > div:hover, .blog-card:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.013);
}

/***** COLOR HIERARCHY FIXES (ACCESSIBILITY) *****/
.testimonial-card {
  color: #16305A;
  background: #FFF !important;
  border: 2px solid #B6DEFA;
}
.testimonial-card p { color: #182A41; }
.testimonial-card span { color: var(--color-primary-dark); }

/***** FLEXBOX - ENFORCED ONLY! *****/
/* No grid/columns/abs positioning used for content cards */
/* All layouts are flexbox with gap for spacing, margin for edge 
   All content cards have min 20px margin-bottom
*/