/* ========================
   CSS RESET & NORMALIZATION
=========================== */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #f6f5f1;
  color: #253a5b;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  background-color: transparent;
  color: #49682d;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #7db434;
  outline: none;
}
ul, ol {
  margin-left: 24px;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
button {
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* ==============================================
   BRAND COLORS & ORGANIC NATURE-INSPIRED PALETTE
============================================== */
:root {
  --color-primary: #253a5b;
  --color-secondary: #7db434;
  --color-accent: #f5f4ef;
  --color-green-dark: #49682d;
  --color-green-light: #b6ce8c;
  --color-brown: #ad9477;
  --color-sand: #dfd7c5;
  --color-earth: #ddcbb3;
  --color-grey: #64727e;
  --color-bg: #f6f5f1;
  --color-white: #fff;
  --color-danger: #c0392b;
  --shadow-1: 0 2px 8px rgba(90,94,69,0.08);
  --shadow-2: 0 4px 16px rgba(90,94,69,0.12);
  --radius-1: 16px;
  --radius-2: 30px;
}

/* ====================================
   TYPOGRAPHY SCALE & FONT STYLING
==================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito:400,600&display=swap');
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--color-primary);
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--color-green-dark);
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
p, li, blockquote, span {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-grey);
}
strong, b {
  font-weight: 700;
}

/* Visual hierarchy support */
.section h2 + p {
  margin-top: 0;
  margin-bottom: 24px;
}
.section h1, .section h2 {
  margin-bottom: 20px;
}
.section h3 {
  margin-bottom: 10px;
}

/* ===========================
   GLOBAL CONTAINERS
=========================== */
.container {
  max-width: 1080px;
  padding: 0 16px;
  margin: 0 auto;
  width: 100%;
}
.content-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-1);
  padding: 32px 24px;
  margin-bottom: 40px;
}

/* =========================
   ORGANIC/NATURE EFFECTS
========================= */
body {
  background: var(--color-bg);
}
header, footer {
  background: var(--color-accent);
  box-shadow: 0 2px 8px rgba(120,140,90,0.08);
}
.content-wrapper, .card, .cta-section, .testimonial-card {
  border-radius: var(--radius-1);
}
.card, .feature-grid li, .skills-grid li, .testimonial-card, .value-list li, .event-calendar li, .article-list li, .downloadables li {
  background: var(--color-sand);
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-1);
}
.card {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

/* =========================
   SECTIONS LAYOUT SPACING
========================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 260px;
  min-width: 240px;
  background: var(--color-earth);
  margin-bottom: 20px;
}
.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: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-1);
  box-shadow: var(--shadow-2);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ====================================
   FLEXBOX FOR ALL MAJOR LAYOUTS
==================================== */
header .container, footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
footer {
  padding: 40px 0 24px 0;
}
footer nav {
  margin: 8px 0;
}
footer .contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
footer .contact-details img {
  margin-right: 8px;
}

/* =============================
   HEADER, LOGO, NAVIGATION
============================= */
header {
  padding: 18px 0 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1.5px solid var(--color-sand);
}
header .container {
  min-height: 40px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-green-light);
  color: var(--color-green-dark);
}

header a.cta.primary {
  background: var(--color-secondary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: var(--shadow-1);
  margin-left: 12px;
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
}
header a.cta.primary:hover, header a.cta.primary:focus {
  background: var(--color-green-dark);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px) scale(1.03);
}
header img {
  max-height: 48px;
}

/* ================================
   MOBILE BURGER MENU COMPONENTS
================================ */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: #fff;
  font-size: 2rem;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 400;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-green-dark);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-accent);
  box-shadow: var(--shadow-2);
  z-index: 999;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.77,0.2,0.05,1.0);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px;
  margin-left: auto;
  margin-top: 20px;
  margin-right: 20px;
  border-radius: 10px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-green-light);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 40px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--color-primary);
  padding: 10px 0 10px 0;
  min-width: 180px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.19s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-green-dark);
  background: var(--color-green-light);
}

/* ===============
   MAIN SECTIONS
================ */
main {
  margin: 0 auto;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-secondary);
  color: #fff;
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-1);
  padding: 40px 28px;
  text-align: center;
}
.cta-section h2, .cta-section p {
  color: #fff !important;
}
.cta-section .cta.primary {
  margin-top: 24px;
  font-size: 1.13rem;
}

/* =======================
   CARD & FEATURE GRIDS
======================= */
.feature-grid, .skills-grid, .value-list, .course-list, .event-calendar, .article-list, .downloadables, .quote-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style-type: none;
  margin: 0 0 16px 0;
  padding: 0;
}
.feature-grid li, .skills-grid li, .value-list li, .course-list li, .event-calendar li, .article-list li, .downloadables li, .quote-list li {
  background: var(--color-sand);
  padding: 24px 20px;
  border-radius: var(--radius-1);
  flex: 1 1 220px;
  box-shadow: var(--shadow-1);
  margin-bottom: 0;
  color: var(--color-primary);
  font-size: 1rem;
  align-items: flex-start;
  display: flex;
  gap: 12px;
  min-width: 210px;
}
.feature-grid li {
  display: block;
}
.feature-grid img, .value-list img, .downloadables img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-right: 8px;
}

/* Course and event headers */
.feature-grid h3, .course-list h3, .event-calendar h3 {
  margin-top: 10px;
  font-size: 1.15rem;
  color: var(--color-green-dark);
}

/* Testimonial specific styling */
.testimonial-card {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-1);
  margin-bottom: 20px;
  max-width: 540px;
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--color-primary);
  flex: 1 1 auto;
}
.testimonial-card span {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1rem;
  margin-left: 18px;
  white-space: nowrap;
}

/* Star ratings */
.star-ratings {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: #dfa800;
  font-size: 1.2rem;
}

/* ===================
   BUTTON STYLES
=================== */
.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 32px;
  cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: background 0.22s, transform 0.16s, box-shadow 0.19s;
  min-width: 180px;
  margin: 0 8px 0 0;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-green-dark);
  transform: scale(1.03) translateY(-2px);
  box-shadow: var(--shadow-2);
}

/* ================
   FORM ELEMENTS
================= */
input, textarea, select {
  border: 1.5px solid var(--color-brown);
  border-radius: 10px;
  padding: 10px 16px;
  margin-top: 8px;
  margin-bottom: 18px;
  font-size: 1rem;
  background: var(--color-earth);
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: #fffbe5;
}

/* ================
   FOOTER STYLES
================= */
footer .container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav a {
  color: var(--color-primary);
  font-weight: 600;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-green-light);
  color: var(--color-green-dark);
}
footer a {
  display: inline-flex;
}

/* Responsive alignments for .contact-details */
footer .contact-details {
  gap: 8px;
  font-size: 0.98rem;
}
footer .contact-details img {
  margin-right: 7px;
}

/* ================================
   ORGANIC/NATURE ELEMENT TOUCHES
================================ */
.card, .testimonial-card, .content-wrapper, .cta-section, .feature-grid li, .value-list li,
.downloadables li, .event-calendar li, .course-list li {
  border-radius: 22px 40px 18px 30px;
  border-bottom: 2px solid var(--color-green-light);
  border-right: 2px solid var(--color-brown);
}

/* ======================
   LISTS & RESOURCE GRIDS
======================= */
.article-list a {
  color: var(--color-green-dark);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  transition: color 0.15s;
}
.article-list a:hover, .article-list a:focus {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* ==========================
   SPECIAL FEATURE SECTIONS
========================== */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.team-bios > div {
  background: var(--color-earth);
  padding: 28px 18px;
  flex: 1 1 220px;
  border-radius: var(--radius-1);
  box-shadow: var(--shadow-1);
  text-align: left;
  min-width: 210px;
}
.newsletter-section ul {
  margin: 0 0 16px 0;
  padding-left: 18px;
  list-style-type: disc;
}

/* ========================
   SLIDER/TESTIMONIAL LIST
========================= */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: var(--color-earth);
  color: var(--color-primary);
  padding: 24px 18px;
  box-shadow: 0 -2px 12px rgba(110,110,90,0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-radius: 26px 26px 0 0;
  animation: slideUpBanner 0.55s cubic-bezier(0.61, 1, 0.88, 1) 0s 1;
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1 1 240px;
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 22px;
  border-radius: 18px;
  font-size: 1rem;
  transition: background 0.18s, color 0.12s, transform 0.15s;
  box-shadow: var(--shadow-1);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-green-dark);
  transform: translateY(-2px) scale(1.03);
}
.cookie-banner button.cookie-settings {
  background: var(--color-brown);
  color: var(--color-primary);
}
.cookie-banner button.cookie-settings:hover,
.cookie-banner button.cookie-settings:focus {
  background: var(--color-green-light);
  color: var(--color-primary);
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(80,100,80,0.25);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
  opacity: 1;
  animation: fadeInModalBg 0.28s;
}
@keyframes fadeInModalBg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: var(--color-accent);
  border-radius: var(--radius-2);
  max-width: 400px;
  box-shadow: var(--shadow-2);
  padding: 36px 28px 28px 28px;
  position: relative;
  z-index: 1410;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popInModal 0.33s cubic-bezier(0.61, 1, 0.88, 1);
}
@keyframes popInModal {
  from { transform: scale(0.7) translateY(60px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.32rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  color: var(--color-primary);
}
.cookie-modal .cookie-category .toggle-switch {
  margin-left: 10px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.6rem;
  color: var(--color-primary);
  background: none;
  transition: background 0.1s;
  border-radius: 7px;
  padding: 4px 10px;
}
.cookie-modal .cookie-close:hover,
.cookie-modal .cookie-close:focus {
  background: var(--color-green-light);
}
.cookie-modal .essential {
  color: var(--color-green-dark);
  font-weight: 700;
}

/* Toggle Switch (for cookie consent) */
.toggle-switch {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 24px;
  align-items: center;
}
.toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 42px;
  height: 20px;
  background: var(--color-brown);
  border-radius: 18px;
  transition: background 0.19s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--color-secondary);
}
.toggle-slider:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 1px 3px rgba(40,70,25,0.13);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

/* ===============
   MEDIA QUERIES
================ */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  nav {
    flex-wrap: wrap;
    gap: 10px;
  }
  .feature-grid, .skills-grid, .team-bios, .content-grid {
    gap: 16px;
  }
  .feature-grid li, .skills-grid li, .value-list li, .course-list li, .event-calendar li, .article-list li, .downloadables li {
    min-width: 170px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .card {
    padding: 20px 10px;
    margin-bottom: 28px;
  }
  .section {
    padding: 30px 6px;
    margin-bottom: 36px;
  }
  .card-container, .content-grid, .team-bios, .testimonial-list, .feature-grid, .skills-grid {
    flex-direction: column;
    gap: 18px;
  }
  .value-list, .quote-list, .event-calendar, .article-list, .downloadables, .course-list, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  .star-ratings {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .cta-section {
    padding: 28px 9px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  header .container, footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 0 4vw;
  }
  nav {
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 480px) {
  h1, .h1 { font-size: 1.45rem; }
  h2, .h2 { font-size: 1.12rem; }
  .section {padding: 16px 1px;}
  .content-wrapper, .cta-section {padding: 12px 3px;}
  .feature-grid li, .skills-grid li, .course-list li, .event-calendar li, .downloadables li {
    padding: 14px 9px;
    min-width: unset;
  }
  .cookie-banner { flex-direction: column; gap: 13px; align-items: flex-start; }
}

/* Hide mobile menu by default */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}

/* ===============
   DECORATIVES
================ */
.card:before, .content-wrapper:before, .cta-section:before, .testimonial-card:before {
  content: '';
  display: block;
  position: absolute;
  top: -25px;
  right: -30px;
  width: 60px;
  height: 60px;
  background: rgba(125,180,52,0.12);
  border-radius: 75% 60% 80% 60% / 60% 65% 75% 77%;
  pointer-events: none;
  z-index: 1;
}
.card:after, .content-wrapper:after, .cta-section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -32px;
  left: -25px;
  width: 46px;
  height: 37px;
  background: rgba(173,148,119,0.09);
  border-radius: 60% 78% 60% 75% / 75% 74% 65% 80%;
  pointer-events: none;
  z-index: 1;
}

/* Remove position for parent if not needed (keeps parents styled only for decor) */
.card, .content-wrapper, .cta-section, .testimonial-card {
  position: relative;
  overflow: visible;
}

/* =====================
   ACCESSIBILITY FOCUS
===================== */
a:focus-visible, button:focus-visible {
  outline: 2px dashed var(--color-secondary);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 2000;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #fff;
  color: var(--color-primary);
  padding: 8px 22px;
  border-radius: 10px;
  outline: 2px solid var(--color-green-dark);
}

/* END OF STYLE.CSS */