/* 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;
}
html {
  line-height:1.15;
  -webkit-text-size-adjust:100%;
  scroll-behavior: smooth;
}
body {
  background: #F5F7FB;
  color: #1B263B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  margin: 0;
  transition: background 0.3s;
}
*, *:before, *:after{
  box-sizing: inherit;
}
img,svg {
  display:block;
  max-width:100%;
  height:auto;
}
a {
  color: #21E6C1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1B263B;
  text-decoration: underline dotted;
}
ul,ol {
  list-style: none;
}

/* ROOT VARIABLES (with fallbacks) */
:root {
  --color-primary: #1B263B;
  --color-secondary: #B8C1EC;
  --color-accent: #21E6C1;
  --color-bg: #F5F7FB;
  --color-card: #FFFFFF;
  --color-shadow: rgba(33,230,193,0.09);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* CONTAINER & WRAPPERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/********* TYPOGRAPHY *********/
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--color-primary);
}
h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--color-secondary);
  font-family: var(--font-body);
  margin-bottom: 20px;
}
.strong, strong {
  color: var(--color-accent);
  font-weight: 700;
}
p, ul, ol, dl, dd, li, blockquote, span, .footer-contact {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #343C5A;
  line-height: 1.65;
}
blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #1B263B;
  border-left: 4px solid #21E6C1;
  padding-left: 16px;
  margin: 0 0 8px 0;
}
.article-meta, .event-date, .testimonial-location {
  color: #7F8FA6;
  font-size: 0.93rem;
  font-style: italic;
}
dt {
  font-weight: bold;
  color: var(--color-primary);
  margin-top: 14px;
}
dd {
  margin-left: 0;
  margin-bottom: 12px;
}

/***************** HEADER & NAV *****************/
header {
  width: 100%;
  background: #FFF;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(33,230,193,0.04);
  transition: box-shadow 0.2s;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 12px;
}
header img {
  height: 44px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  color: var(--color-primary);
  border-radius: 7px;
  padding: 6px 14px;
  transition: background 0.18s,color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: #1B263B;
}
.main-nav .cta-primary {
  color: #FFF;
  background: var(--color-accent);
  border-radius: 40px;
  padding: 10px 28px;
  font-size: 1.05rem;
  box-shadow: 0 6px 24px var(--color-shadow);
  letter-spacing: 0.04em;
  margin-left: 18px;
  border: none;
  transition: background 0.23s, box-shadow 0.23s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: var(--color-primary);
  color: #21E6C1;
  box-shadow: 0 10px 30px rgba(27,38,59,0.11);
}

/******************** MOBILE MENU ********************/
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #FFF;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.21s, color 0.23s, box-shadow 0.23s;
  margin-left: 12px;
  z-index: 999;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-secondary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 350px;
  height: 100vh;
  background: #FFF;
  box-shadow: -5px 0 34px rgba(33,230,193,0.09);
  transform: translateX(100%);
  z-index: 2100;
  transition: transform 0.37s cubic-bezier(.7,.3,0,1);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  margin-left: auto;
  margin-top: 12px;
  margin-right: 20px;
  background: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  border: none;
  cursor: pointer;
  z-index: 2200;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  width: 100%;
  margin-top: 28px;
  padding-left: 20px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.09rem;
  color: var(--color-primary);
  padding: 10px 0;
  border-radius: 7px;
  transition: background 0.18s,color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-accent);
  color: #FFF;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 7px;
  }
  header .container {
    padding: 11px 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/****************** HERO ***************/
.hero {
  background: linear-gradient(90deg, #B8C1EC 10%, #F5F7FB 100%);
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 46px 0 40px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 5;
}
.hero h1 {
  font-size: 2.85rem;
  letter-spacing: 1.5px;
  color: #1B263B;
  margin-bottom: 0.9rem;
  text-shadow: 0 3px 24px #21E6C140;
  font-family: var(--font-display);
}
.hero .subheadline {
  margin-bottom: 16px;
  max-width: 550px;
}
.hero .cta-primary {
  margin-top: 16px;
  font-size: 1.21rem;
}

/******************** SECTIONS, SPACING & STRUCTURE ******************/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/******************** FEATURE CARDS / FLEX LAYOUTS ******************/
.features, .blog-list, .about, .team, .events-list, .resources-list, .faq, .testimonials, .cta, .contact, .privacy-policy, .gdpr-overview, .cookies-policy, .terms-of-use, .thank-you {
  margin-bottom: 60px;
  padding: 40px 0;
}
.feature-grid, .service-cards, .article-list, .topic-list, .downloadables, .event-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-grid li, .service-cards li, .article-list li, .downloadables li, .event-item, .topic-list li {
  background: var(--color-card);
  border-radius: 20px;
  box-shadow: 0 6px 16px var(--color-shadow);
  padding: 32px 26px;
  margin-bottom: 20px;
  flex: 1 1 270px;
  min-width: 240px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.17s;
  position: relative;
}
.feature-grid li:hover, .service-cards li:hover, .article-list li:hover, .downloadables li:hover, .event-item:hover {
  box-shadow: 0 12px 30px rgba(33,230,193,0.13);
  transform: translateY(-3px) scale(1.03) rotate(-2deg);
  z-index: 2;
}
.feature-grid img, .service-cards img {
  height: 48px;
  margin-bottom: 16px;
  background: #F5F7FB;
  border-radius: 50%;
  padding: 10px;
}
.feature-grid h3, .service-cards h2 {
  color: var(--color-primary);
  margin-bottom: 8px;
  font-size: 1.31rem;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}
.feature-grid p, .service-cards p {
  color: #343C5A;
  font-size: 1rem;
  margin-bottom: 0;
}

/******** CARD CONTAINER, card, content grid, etc. ********/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  min-width: 220px;
  max-width: 330px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 10px 22px rgba(33,230,193,0.13);
  transform: scale(1.03) rotate(2deg);
  z-index: 2;
}
.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;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/********************** TESTIMONIALS *******************/
.testimonials .content-wrapper {
  gap: 30px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFF;
  border-radius: 16px;
  padding: 20px 32px;
  box-shadow: 0 4px 18px var(--color-shadow);
  margin-bottom: 20px;
  min-height: 120px;
  max-width: 600px;
  position: relative;
  animation: fadeInCard 0.8s;
}
@keyframes fadeInCard {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: translateY(0); }
}
.testimonial-meta {
  margin-left: 18px;
  font-size: 1rem;
  color: #666;
}
.testimonial-name {
  font-weight: bold;
  color: #1B263B;
}
.testimonial-location {
  color: var(--color-secondary);
}

/******************* CTA SECTIONS *********************/
.cta {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 28px;
  box-shadow: 0 6px 22px var(--color-shadow);
  margin-bottom: 60px;
  padding: 40px 0;
  position: relative;
}
.cta .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.cta h2 {
  color: #1B263B;
  text-shadow: 0 2px 14px #21E6C122;
}
.cta p {
  color: #0C1430;
}
.cta .cta-primary {
  background: #1B263B;
  color: #21E6C1;
  margin-top: 16px;
}
.cta .cta-primary:hover {
  background: #21E6C1;
  color: #FFF;
}

/******************** BUTTONS && CTAs *********************/
.cta-primary, .downloadables a.cta-primary, .event-item .cta-primary {
  display: inline-block;
  background: var(--color-accent);
  color: #1B263B;
  font-size: 1.08rem;
  font-family: var(--font-display);
  font-weight: bold;
  border-radius: 30px;
  padding: 14px 32px;
  border: none;
  box-shadow: 0 6px 24px var(--color-shadow);
  transition: background 0.25s, color 0.19s, box-shadow 0.24s, transform 0.19s;
  letter-spacing: 0.02em;
  margin-top: 8px;
  cursor: pointer;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-primary);
  color: #21E6C1;
  box-shadow: 0 12px 30px rgba(27,38,59,0.09);
  transform: translateY(-3px) scale(1.04);
}

/******************* FOOTER *********************/
footer {
  background: #212C44;
  color: #FFF;
  padding: 36px 0 20px 0;
  position: relative;
  z-index: 10;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: #B8C1EC;
  margin-bottom: 12px;
}
.footer-branding img {
  height: 36px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #B8C1EC;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 0.98rem;
  transition: background 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-accent);
  color: #212C44;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #B8C1EC;
  font-size: 0.98rem;
}
.footer-contact div, .footer-contact a {
  color: #B8C1EC;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.22s;
}
.footer-contact a:hover {
  color: #21E6C1;
}

/************** BLOG & ARTICLE LISTS **********/
.article-list, .topic-list, .downloadables {
  flex-direction: column;
  gap: 24px;
}
.article-list li, .downloadables li {
  padding: 28px 26px;
  border-radius: 18px;
  box-shadow: 0 4px 12px var(--color-shadow);
  background: var(--color-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.article-list h2, .downloadables h2 {
  font-size: 1.21rem;
  color: var(--color-primary);
}

/************** EVENTS LISTS **************/
.event-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.event-item {
  background: var(--color-card);
  border-radius: 22px;
  padding: 32px 28px;
  min-width: 240px;
  max-width: 360px;
  flex: 1 1 270px;
  box-shadow: 0 8px 24px var(--color-shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.17s, transform 0.16s;
  align-items: flex-start;
}
.event-item:hover {
  box-shadow: 0 15px 36px rgba(33,230,193,0.13);
  transform: scale(1.03) rotate(2deg);
  z-index: 1;
}
.event-date {
  font-size: 0.97rem;
  color: var(--color-secondary);
}

/********** THANK YOU **********/
.thank-you .cta-primary {
  margin-top: 24px;
}

/********* COOKIES CONSENT BANNER *********/
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  background: #1B263B;
  color: #FFF;
  z-index: 9999;
  box-shadow: 0 -2px 16px #21E6C155;
  padding:24px 16px 24px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: center;
  transition: transform 0.31s cubic-bezier(.69,.11,.51,1) 0s;
}
.cookie-consent.hide {
  transform: translateY(120%);
}
.cookie-consent p {
  margin: 0; color: #B8C1EC;
  max-width: 480px;
}
.cookie-buttons {
  display:flex; gap:14px;
}
.cookie-btn {
  background: var(--color-accent);
  color: #1B263B;
  font-family: var(--font-display);
  border-radius: 18px;
  border: none;
  font-weight: 700;
  font-size: 1.04rem;
  padding: 11px 22px;
  transition: background 0.15s, color 0.14s, box-shadow 0.14s;
  cursor: pointer;
  margin: 0 2px;
  outline: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFF;
  box-shadow: 0 4px 22px #21E6C123;
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: #B8C1EC;
  color: #1B263B;
}
.cookie-btn.settings {
  background: #212C44;
  color: #21E6C1;
  border: 2px solid #21E6C1;
  transition: background 0.15s, color 0.14s;
}
.cookie-btn.settings:hover {
  background: #21E6C1;
  color: #1B263B;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,38,59,0.48);
  transition: background 0.18s;
  animation: fadeInModal 0.33s;
}
@keyframes fadeInModal {from{opacity:0} to{opacity:1}}
.cookie-modal-content {
  background: #FFF;
  color: #1B263B;
  border-radius: 18px;
  min-width: 310px;
  max-width: 94vw;
  padding: 34px 38px 24px 38px;
  box-shadow:0 10px 32px #B8C1EC33;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popIn 0.19s;
}
@keyframes popIn {
  from {transform: scale(0.95); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.cookie-modal-content h3{ color:var(--color-primary); margin:0 0 8px 0; }
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  margin:8px 0 0 0;
}
.cookie-category label {
  font-weight: 600;
  color: #1B263B;
  font-family: var(--font-display);
}
.cookie-modal-toggle {
  width: 38px; height: 22px;
  cursor: pointer;
  appearance: none;
  background: #EEE;
  border-radius: 14px;
  position:relative;
  outline:none;
  transition:.22s background;
}
.cookie-modal-toggle:checked {
  background: var(--color-accent);
}
.cookie-modal-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #FFF;
  border-radius: 50%;
  box-shadow:0 2px 5px #B8C1EC44;
  transition:.18s left;
}
.cookie-modal-toggle:checked:before {
  left: 18px;
}
/* Always ON for essential */
.cookie-category .always-on {
  font-weight:700;
  color: var(--color-accent);
  font-size:1.01rem;
  margin-left:8px;
}
.cookie-modal .cookie-btn {
  margin-top: 5px;
}

/********* TEXT SECTIONS/FAQ ****************/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom:20px;
}
.text-section ul {
  padding-left:24px;
  list-style: disc;
}
.text-section ul li {
  margin-bottom: 10px;
  color: #1B263B;
  font-size: 1rem;
}
.text-section dl {
  margin-top: 0;
}
.text-section dt {
  margin-top: 12px;
}
.text-section dd {
  margin-bottom:8px;
}

/*********************** PLAYFUL DYNAMIC EFFECTS ********************/
.feature-grid li, .service-cards li, .event-item, .card {
  animation: floatyCard 1.6s cubic-bezier(.23,.82,.66,.99) backwards;
}
@keyframes floatyCard {
  from { opacity:0; transform: translateY(30px) scale(0.98) rotate(-2deg); }
  to { opacity:1; transform: translateY(0) scale(1) rotate(0deg); }
}
.hero:after {
  content: '';
  display: block;
  position: absolute;
  width: 220px; height: 220px;
  right: -80px; top: -60px;
  background: #21E6C120;
  border-radius: 50%;
  z-index: 1;
  filter: blur(8px);
  pointer-events: none;
  animation: heroBloop 3.6s ease-in-out infinite alternate;
}
@keyframes heroBloop { 0%{ transform: scale(1.1);} 100%{ transform: scale(1.4);} }

/********** RESPONSIVE ***********/
@media (max-width: 1024px) {
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-cards, .event-grid, .card-container {
    gap: 16px;
  }
}
@media (max-width: 850px) {
  .feature-grid li, .service-cards li, .event-item, .card {
    min-width: 170px;
    max-width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 23px;
  }
  .hero, .cta {
    padding: 24px 0 26px 0;
    min-height: 210px;
  }
  .section, .features, .blog-list, .about, .team, .testimonials, .events-list, .resources-list, .faq, .cta, .contact, .privacy-policy, .gdpr-overview, .cookies-policy, .terms-of-use, .thank-you {
    padding: 20px 0;
    margin-bottom: 38px;
  }
  .feature-grid, .service-cards, .article-list, .topic-list, .downloadables, .event-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 7px;
    padding: 14px 15px;
  }
  .footer-branding{
    margin-bottom: 16px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 0 4px;
  }
  .mobile-menu {
    max-width: 96vw;
  }
}
@media (max-width: 480px) {
  h1{font-size:1.55rem;} h2{font-size:1.22rem;} h3{font-size:1.06rem;}
  .hero{min-height:100px;}
  .feature-grid li, .service-cards li, .event-item, .card{
    padding:12px 10px;
  }
  .event-item{padding: 14px 8px;}
}

/********* FONT IMPORTS *********/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/***************** ANIMATIONS FOR MICRO-INTERACTIONS **********/
.cta-primary, .cookie-btn {
  will-change: transform;
}
.cta-primary:active, .cookie-btn:active {
  transform: scale(0.97);
}

/***************** UTIL CLASSES FOR SPACING ****************/ 
.mt-20{margin-top:20px;}
.mb-24{margin-bottom:24px;}
.mb-40{margin-bottom:40px;}
.mt-40{margin-top:40px;}
.text-center{text-align:center;}
.flex-row{display:flex; flex-direction:row;}
.flex-col{display:flex; flex-direction:column;}

/******************* MISC ********************/
::-webkit-scrollbar { width: 10px; background: #EAF0FA; }
::-webkit-scrollbar-thumb { background: #B8C1EC44; border-radius: 10px; }

/* Hide cookie modal by default */
.cookie-modal{display:none;}
.cookie-modal.open{display:flex;}

/* Playful Font Variant Effects */
h1, h2, h3, h4 {
  font-variant: small-caps;
  text-rendering: optimizeLegibility;
}
h1 { letter-spacing: 2px; }
h2 { letter-spacing: 1px; }

/* Fun Accent for Section Titles */
h2:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 6px;
  border-radius: 7px;
  background: var(--color-accent);
  margin-left: 9px;
  margin-top: -4px;
}

/***** Focus Accessibility *****/
a:focus, button:focus, .cta-primary:focus, .cookie-btn:focus {
  outline: 2px dashed var(--color-accent);
  outline-offset:2px;
}

/***** Hide visually but not from screen readers *****/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
