/* ===============================
   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,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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F5F5;
  color: #254370;
}
ul,ol {
  list-style: none;
}
a {
  background: transparent;
  text-decoration: none;
  color: #254370;
  transition: color 0.2s;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ================================
   Brand Variables
   ================================ */
:root {
  --color-primary: #254370;
  --color-secondary: #FFFFFF;
  --color-bg: #F5F5F5;
  --color-accent: #FF9500;
  --color-yellow: #FFB347;
  --color-purple: #336699;
  --color-shade: rgba(37,67,112,0.06);
  --shadow-1: 0 2px 12px 0 rgba(37,67,112,0.06), 0 1.5px 4px 0 rgba(0,0,0,0.03);
  --radius-soft: 18px;
  --radius-round: 25px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --heading-weight: 700;
  --body-weight: 400;
  --transition: 0.3s cubic-bezier(.77,0,.175,1);
}

/* ===============================
   Typography
   =============================== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--color-bg);
  color: var(--color-primary);
  min-height: 100vh;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: var(--heading-weight);
  line-height: 1.18;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, li {
  color: #3d4783;
  font-size: 1rem;
  margin-bottom: 0.5em;
}
b,strong {
  font-weight: bold;
}
small {
  font-size: 13px;
  color: #6A7FA0;
}

/* Fun, playful headings */
h1, h2 {
  position: relative;
  text-shadow: 2px 6px 18px #FFB34711, 0 1px 0 #FFF8;
}

/* Animated underline for section headings */
h2::after {
  display: block;
  content: '';
  width: 56px;
  height: 5px;
  margin-top: 8px;
  background: var(--color-accent);
  border-radius: var(--radius-soft);
  animation: heading-bar-bounce 1.6s both;
}
@keyframes heading-bar-bounce {
  0% { width: 0; opacity: 0; }
  60% { width: 62px; opacity: 1; }
  100% { width: 56px; opacity: 1; }
}

/* ================================
   Flex Layout Containers
   ================================ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-secondary);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
  transition: box-shadow var(--transition), transform var(--transition);
  min-width: 250px;
}
.card:hover, .programme-card:hover {
  box-shadow: 0 10px 30px 0 #25437018;
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
}
.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;
  background: #fffbe7;
  border-radius: var(--radius-soft);
  box-shadow: 0 2px 10px 0 #FFA90022;
  margin-bottom: 20px;
  min-width: 260px;
  border-left: 7px solid var(--color-accent);
  position: relative;
}
.testimonial-card blockquote {
  color: #254370;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.45;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.testimonial-card span {
  color: #473e29;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================================
   HEADER & NAV
   ================================ */
header {
  width: 100%;
  background: var(--color-secondary);
  box-shadow: 0 4px 16px 0 #25437010;
  position: relative;
  z-index: 110;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  min-height: 68px;
}
header .logo {
  display: flex;
  align-items: center;
  margin-right: 8px;
  height: 56px;
  transition: transform var(--transition);
}
header .logo img {
  height: 45px;
  width: auto;
  user-select: none;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.02rem;
  position: relative;
  padding: 5px 10px;
}
.main-nav a:hover, .footer-nav a:hover {
  color: var(--color-accent);
  text-decoration: underline wavy 2px var(--color-accent);
}

.cta-btn {
  font-family: var(--font-display);
  font-weight: bold;
  background: var(--color-accent);
  color: var(--color-secondary);
  border-radius: var(--radius-round);
  padding: 12px 32px;
  font-size: 1.04rem;
  box-shadow: 0 2px 14px 0 #FF950011;
  transition: background var(--transition), transform var(--transition);
  margin-left: 16px;
  cursor: pointer;
  border: none;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffa83b;
  transform: scale(1.06) rotate(-1deg);
  color: var(--color-primary);
}

.cta-link {
  color: var(--color-accent);
  font-weight: bold;
  font-family: var(--font-display);
  display: inline-block;
  font-size: 1rem;
  transition: color var(--transition), text-decoration var(--transition);
  margin-top: 14px;
}
.cta-link:hover { color: var(--color-primary); text-decoration: underline; }

/* ================================
   MOBILE NAVIGATION
   ================================ */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 50%;
  padding: 8px 15px 8px 15px;
  margin-left: 0.5em;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  z-index: 124;
  transition: background var(--transition), color var(--transition), box-shadow 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 16px 0 #ffa20066;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 60px #25437022;
  z-index: 1002;
  transform: translateX(-110%);
  transition: transform 0.4s cubic-bezier(.77,0,.175,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 28px 28px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  color: var(--color-primary);
  border: none;
  align-self: flex-end;
  margin-bottom: 32px;
  cursor: pointer;
  padding: 0 5px;
  transition: color var(--transition);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  background: var(--color-yellow);
  border-radius: var(--radius-round);
  width: 100%;
  padding: 12px 14px;
  box-sizing: border-box;
  margin-bottom: 4px;
  transition: background 0.2s, color 0.14s;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}

@media (max-width: 1020px) {
  header .container {
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .cta-btn {
    padding: 10px 18px;
  }
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 850px) {
  header .container, .container {
    padding: 0 5px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 12px 22px;
    margin-left: 8px;
  }
}

/* ================================
   HERO SECTIONS
   ================================ */
.hero {
  background: linear-gradient(120deg, #fff 55%, #FFB34720 100%);
  padding-top: 68px;
  padding-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  text-shadow: 0 6px 32px #ffd50012, 0 1.5px 0 #FFF9;
  margin-bottom: 10px;
  letter-spacing: -1.5px;
}
.hero p {
  color: #3d4783;
  font-size: 1.12rem;
}
.hero .cta-btn {
  margin-top: 18px;
}

/* ================================
   FEATURES & CARDS
   ================================ */
.features {
  background: var(--color-bg);
  margin-bottom: 60px;
  padding: 40px 0;
}
.features-grid, .programme-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.features-grid > div, .programme-card {
  background: #fff;
  border-radius: var(--radius-soft);
  padding: 28px 22px;
  box-shadow: var(--shadow-1);
  transition: transform 0.18s, box-shadow 0.18s;
  min-width: 240px;
  flex: 1 1 220px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.features-grid > div:hover, .programme-card:hover {
  box-shadow: 0 10px 32px #ffb34711, 0 0px 0 #fff;
  transform: scale(1.04) rotate(-1deg);
}
.features-grid img,
.programme-card img,
.features ul img {
  width: 48px;
  margin-bottom: 8px;
  display: block;
}
.features-grid h3,
.programme-card h3 {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.23rem;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 18px;
}
.features ul li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--color-primary);
  background: #fff;
  border-radius: var(--radius-round);
  box-shadow: 0 2px 9px #33669912;
  padding: 10px 18px 10px 12px;
  gap: 8px;
}

/* Programme Cards (Programmes page) */
.programme-cards {
  margin-top: 18px;
  gap: 24px;
  justify-content: flex-start;
}
.programme-card {
  min-width: 240px;
  flex: 1 1 220px;
}

/* ================================
   ABOUT - TEXT SECTION
   ================================ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul {
  margin-top: 0.5em;
}
.text-section li {
  margin-bottom: 2px;
  position: relative;
  padding-left: 18px;
}
.text-section li::before {
  content: '★';
  color: var(--color-accent);
  position: absolute;
  left: 0; top: 0;
  font-size: 1em;
  font-family: var(--font-display, Arial);
}

/* ================================
   CTA BANNERS
   ================================ */
.cta-banner {
  background: #ffe0b9;
  border-radius: var(--radius-soft);
  box-shadow: 0 0px 22px #ffb3471a;
  margin-bottom: 40px;
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  animation: cta-slide-in 1.6s both;
}
.cta-banner h2,
.cta-banner p {
  color: #8e5900;
  font-family: var(--font-display);
  text-align: center;
}
.cta-banner .cta-btn {
  margin-top: 10px;
  box-shadow: 0 4px 16px #ff950031;
}
@keyframes cta-slide-in {
  0% { opacity: 0; transform: translateY(80px) scale(0.94); }
  50% { opacity: 1; }
  100% { opacity: 1; transform: none; }
}

/* ================================
   RESOURCE/ARTICLE & EVENT LISTS
   ================================ */
.resources-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0.7em;
}
.resource-item {
  background: #fff;
  border-radius: var(--radius-soft);
  box-shadow: 0 2px 12px 0 #2543700a;
  padding: 22px 19px;
  min-width: 210px;
  flex: 1 1 210px;
  margin-bottom: 16px;
  transition: box-shadow var(--transition);
}
.resource-item:hover {
  box-shadow: 0 10px 22px #25437018;
}
.event-list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.event-list li {
  background: #f7e8ff;
  border-radius: var(--radius-round);
  padding: 22px 18px;
  font-family: var(--font-body);
  color: #3d4783;
  font-size: 1rem;
  margin-bottom: 0.6em;
  box-shadow: 0 4px 18px #25437011;
  display: flex;
  flex-direction: column;
}
.event-list a {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: bold;
  margin-top: 5px;
  display: inline-block;
  transition: color var(--transition);
}
.event-list a:hover { color: var(--color-primary); }

/* ================================
   LEGAL & POLICY SECTIONS
   ================================ */
.legal {
  background: #fff;
  border-radius: var(--radius-soft);
  box-shadow: 0 2px 12px 0 #25437009;
  margin-bottom: 50px;
  padding: 40px 20px;
}
.legal .content-wrapper h1 {
  color: var(--color-primary);
  margin-bottom: 16px;
}
.text-section {
  color: #254370;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0.9em;
}
.text-section ul li {
  color: #3d4783;
  font-size: 1rem;
}

/* ================================
   THANK YOU PAGE
   ================================ */
.thankyou {
  padding-top: 90px;
  padding-bottom: 60px;
  background: linear-gradient(90deg, #fffdee 40%, #FFB34727 100%);
  min-height: 55vh;
  display: flex;
  align-items: center;
}
.thankyou .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}
.thankyou h1 { color: var(--color-accent); font-size: 2.4rem; }

/* ================================
   CONTACT SECTION
   ================================ */
.contact-section .brand-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 10px;
}
.contact-section p, .contact-section a {
  color: #254370;
  font-size: 1rem;
}
.contact-section img { vertical-align: middle; margin-right: 7px; }
.map-embed {
  margin-bottom: 20px;
}

.business-hours ul {
  margin: 8px 0 18px 0;
}
.business-hours li {
  margin-bottom: 4px;
  color: #1c244a;
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: linear-gradient(80deg, #254370 78%, #FFB347 100%);
  color: #fff;
  padding: 38px 0 24px 0;
  margin-top: 46px;
}
footer .container {
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-direction: row;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.93;
  transition: color 0.2s, opacity 0.22s;
}
.footer-nav a:hover {
  color: var(--color-yellow);
  opacity: 1;
}
.brand-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.brand-contact span, .brand-contact a {
  color: #fff;
  font-size: 0.96rem;
}
.brand-contact img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 7px;
}
footer small {
  color: #c6cadb;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* ================================
   COOKIE CONSENT BANNER
   ================================ */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 22px;
  z-index: 3000;
  background: #fffbe7;
  color: #254370;
  box-shadow: 0 2px 24px 0 #FFB34788;
  border-radius: var(--radius-soft);
  padding: 25px 22px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  animation: cookie-fade-in 0.95s;
}
@keyframes cookie-fade-in {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: none; }
}
.cookie-banner__text {
  flex: 2 1 210px;
  font-size: 1rem;
  margin-right: 12px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-round);
  padding: 10px 22px;
  border: none;
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
  box-shadow: 0 2px 8px 0 #ffa20011;
  margin-right: 4px;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #254370;
  color: #ffe0b9;
}
.cookie-btn--secondary {
  background: #eee;
  color: #254370;
  border: 2px solid var(--color-accent);
}
.cookie-btn--secondary:hover, .cookie-btn--secondary:focus {
  background: var(--color-yellow);
  color: #254370;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(37,67,112, 0.41);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fade 0.25s;
}
@keyframes cookie-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__content {
  background: #fffbe7;
  border-radius: var(--radius-soft);
  box-shadow: 0 4px 36px 0 #FFA90044;
  padding: 36px 30px 30px 30px;
  color: #254370;
  min-width: 350px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cookie-modal__header h2 {
  margin-bottom: 0;
  font-size: 1.2rem;
  color: var(--color-accent);
}
.cookie-modal__close {
  border: none;
  background: none;
  font-size: 2.1rem;
  color: #254370;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal__close:hover {
  color: var(--color-accent);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 18px; height: 18px;
  margin-right: 5px;
}
.cookie-category .cookie-required {
  font-size: 1rem;
  font-style: italic;
  color: #847000;
}
.cookie-modal__save {
  align-self: flex-end;
  margin-top: 18px;
}

/* ================================
   UTILS
   ================================ */
.gap-y-12 { row-gap: 12px; }
.gap-y-24 { row-gap: 24px; }
.gap-x-12 { column-gap: 12px; } 
.gap-x-24 { column-gap: 24px; }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1020px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .features-grid > div, .programme-card { min-width: 170px; }
  .cta-banner { padding: 24px 8px; }
}
@media (max-width: 850px) {
  .footer-nav { gap: 12px; }
  .section { padding: 35px 8px; margin-bottom: 38px; }
  .legal { padding: 26px 8px; }
}
@media (max-width: 750px) {
  .features-grid, .programme-cards, .resources-list {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid, .card-container { flex-direction: column; gap: 20px; }
  .testimonial-card, .resource-item, .programme-card, .card {
    min-width: 80%;
  }
  .event-list ul {
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 5px;
    max-width: 100vw;
  }
  .section, .legal, .cta-banner {
    padding: 22px 2px;
  }
  .header .container, footer .container {
    padding: 0 2px;
  }
  .cookie-banner {
    left: 4px; right: 4px; bottom: 2px;
    flex-direction: column;
    padding: 18px 7px;
    gap: 16px;
  }
  .cookie-banner__actions { flex-direction: column; gap: 8px; align-items: stretch; }
  .mobile-menu {
    padding: 30px 5px 5px 12px;
  }
  .cookie-modal__content { min-width: unset; width: 95vw; padding: 20px 8px 16px 8px; }
}
/* Responsive flex shifts */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 20px; align-items: stretch; }
  .content-wrapper { gap: 14px; }
  .brand-contact {
    flex-direction: column;
    gap: 8px;
  }
}

/* Animated accent blobs for playful feel */
.hero::before, .cta-banner::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  border-radius: 45% 55% 50% 50%/60% 40% 60% 40%;
  background: #FFB34735;
  width: 160px;
  height: 110px;
  left: 12px;
  top: -60px;
  transform: rotate(-8deg) scale(1.05);
  animation: accent-bounce 4s infinite ease-in-out alternate;
}
.cta-banner::before {
  left: unset;
  right: 4px;
  top: -52px;
  width: 120px; height: 75px;
  background: #FFB34725;
  animation-delay: 2s;
}
@media (max-width: 700px) {
  .hero::before, .cta-banner::before { display: none; }
}
@keyframes accent-bounce {
  0% {transform: rotate(-8deg) scale(1.02);}
  70% {transform: rotate(0deg) scale(1.11);}
  100%{transform: rotate(-12deg) scale(1.05);}
}

/* ================================
   PLAYFUL MICRO-ANIMATIONS (hover/focus)
   ================================ */
.features-grid > div:hover, 
.programme-card:hover,
.card:hover, .resource-item:hover {
  border: 2.5px solid var(--color-accent);
  cursor: pointer;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2.5px;
  background: var(--color-accent);
  transition: width 0.24s;
  border-radius: 2px;
}
.main-nav a:hover:after {
  width: 100%;
}

/* ========== Hide elements if needed for accessibility ========== */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* ================================
   PRINT (for legal pages)
   ================================ */
@media print {
  .main-nav, .footer-nav, .cta-btn, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  header,footer { box-shadow:none; background:none; }
  body { color: #111; background: #fff; }
}

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