/* ====================================================== */
/* 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, menu, 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #f7f9fb;
  color: #233946;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: #255064;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #60A89E;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ====================================================== */
/* Brand Typography & Color Variables                     */
/* ====================================================== */
:root {
  --color-primary: #255064;
  --color-secondary: #60A89E;
  --color-accent: #F2E2B3;
  --color-background: #f7f9fb;
  --color-black: #233946;
  --color-gray-light: #e6e8ed;
  --color-gray: #b8c3d1;
  --color-gray-dark: #858fa4;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Lato', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; }
h2 { font-size: 1.7rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; font-weight: 700; }
h4, h5, h6 { font-size: 1.125rem; margin-bottom: 10px; }

p, li, span, label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-black);
}
strong { font-weight: 700; }
em { font-style: italic; }

/* ====================================================== */
/* Utility Classes (Spacing, Layout, Structure)           */
/* ====================================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(38,64,100,0.07);
  position: relative;
}
@media (max-width: 992px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .section {
    padding: 20px 4px;
    margin-bottom: 28px;
    border-radius: 10px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(38,64,100,0.08);
  margin-bottom: 20px;
  padding: 30px 26px;
  position: relative;
  flex: 1 1 330px;
  min-width: 280px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover, .card:focus {
  box-shadow: 0 4px 20px 0 rgba(38,64,100,0.14);
  transform: translateY(-3px) scale(1.02);
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f3f5f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(97,133,168,0.05);
  margin-bottom: 20px;
  position: relative;
  color: #233946;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.14rem;
  color: #233946;
  margin: 0 0 0 0;
  quotes: '“' '”' '‘' '’';
  position: relative;
}
.testimonial-card blockquote:before {
  content: open-quote;
  color: var(--color-secondary);
  font-size: 1.5em;
  vertical-align: -0.2em;
  margin-right: 3px;
}
.testimonial-card blockquote:after {
  content: close-quote;
  color: var(--color-secondary);
  font-size: 1.5em;
  vertical-align: -0.2em;
  margin-left: 2px;
}
.testimonial-card p {
  font-size: 0.96em;
  color: var(--color-gray-dark);
  font-weight: 600;
  margin: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f5f8fa;
  border-radius: 10px;
  padding: 24px 22px;
  min-width: 235px;
  flex: 1 1 230px;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 1px 6px 0 rgba(38,64,100,0.03);
}
.feature-item img {
  width: 36px; height: 36px;
  filter: grayscale(0.2) brightness(0.96);
}
.feature-item h3 {
  color: var(--color-primary);
  font-size: 1.14rem;
  margin-bottom: 5px;
}
.feature-item p {
  color: #3b5062;
  margin-bottom: 0;
}
.feature-item:hover {
  box-shadow: 0 4px 16px 0 rgba(38,64,100,0.09);
  background: #e6e8ed;
  transform: translateY(-2px) scale(1.01);
}

/* Distinctive spacing for all content */
.section > *,
.content-wrapper > * {
  margin-bottom: 20px;
}
.section > *:last-child,
.content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* ====================================================== */
/* Header & Navigation                                    */
/* ====================================================== */
header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e6e8ed;
  box-shadow: 0 1px 12px 0 rgba(38,64,100,0.04);
  position: relative;
  z-index: 51;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1 1 auto;
  margin-left: 46px;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 6px 8px;
  border-radius: 5px;
  transition: color .2s, background .2s;
}
.main-nav a.active, .main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: var(--color-secondary);
}

/* CTA Button Styles */
.cta-button {
  display: inline-block;
  font-family: var(--font-display);
  padding: 12px 32px;
  border-radius: 7px;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, box-shadow 0.23s, border 0.18s;
  outline: none;
  border: none;
  cursor: pointer;
  text-align: center;
  margin-left: 16px;
  box-shadow: 0 2px 10px 0 rgba(38, 80, 100, 0.08);
}
.cta-button.primary {
  background: var(--color-primary);
  color: #fff;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #194050;
  color: #fff;
}
.cta-button.secondary {
  background: var(--color-secondary);
  color: #fff;
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #44867C;
  color: #fff;
}
.cta-button.accent {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cta-button.accent:hover, .cta-button.accent:focus {
  background: #ffe7a9;
  color: var(--color-primary);
  border-color: var(--color-secondary);
}

/* Hamburger Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fff;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 1.6rem;
  margin-left: 18px;
  border: none;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
  z-index: 106;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* Show/hide nav by breakpoint */
@media (max-width: 992px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* ====================================================== */
/* Mobile Menu (Overlay)                                  */
/* ====================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,80,100,0.98);
  color: #fff;
  z-index: 105;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(0.7,0.24,0.31,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2.1rem;
  margin: 18px 22px 0 0;
  border: none;
  cursor: pointer;
  padding: 0 4px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 30px;
  min-width: 250px;
}
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* Hide mobile menu on desktop */
@media (min-width: 993px) {
  .mobile-menu { display: none !important; }
}

/* ====================================================== */
/* Hero / Section Specific                                */
/* ====================================================== */
#hero {
  background: linear-gradient(90deg, #f5f8fa 65%, #e6e8ed 100%);
  border-bottom: 1px solid #e6e8ed;
  margin-bottom: 0;
  box-shadow: 0 2px 32px 0 rgba(38,80,100,0.03);
}
#hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  min-height: 320px;
  padding-top: 50px;
  padding-bottom: 50px;
}
#hero h1 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 18px;
}
#hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--color-black);
}
@media (max-width: 768px) {
  #hero .content-wrapper {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  #hero h1 { font-size: 1.45rem; }
}

/* Features Section */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .feature-grid {
    gap: 14px;
    justify-content: flex-start;
  }
}
@media (max-width: 660px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* Project Cards */
.project-card {
  background: #fff;
  border: 1px solid #e6e8ed;
  border-radius: 9px;
  padding: 28px 22px;
  box-shadow: 0 1px 8px 0 rgba(38,80,100,0.04);
  margin-bottom: 22px;
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
  min-width: 220px;
  flex: 1 1 330px;
  position: relative;
}
.project-card:hover {
  box-shadow: 0 3px 20px 0 rgba(38,80,100,0.13);
  border: 1.5px solid var(--color-secondary);
  transform: scale(1.015);
  z-index: 2;
}
.project-card h3 {
  margin-bottom: 10px;
}
.project-card .category {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  font-size: 0.98em;
  font-weight: 600;
  padding: 2px 13px;
  border-radius: 99px;
  margin-top: 6px;
}

/* Filters and Buttons (lists, FAQ, etc.) */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.filters span {
  color: var(--color-gray-dark);
  font-weight: 600;
}
.filters button {
  background: #f3f5f9;
  color: var(--color-primary);
  border-radius: 7px;
  border: 1px solid #e6e8ed;
  padding: 6px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1em;
  transition: background 0.15s, color 0.15s, border 0.15s;
}
.filters button:hover, .filters button:focus {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}

/* Accordions for FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #f5f8fa;
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 1px 5px 0 rgba(60,85,102,0.05);
  transition: background 0.18s;
}
.faq-item h3 {
  color: var(--color-primary);
  font-size: 1.09rem;
  margin-bottom: 8px;
}

/* Resource Lists */
.resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.article-list, .video-list, .downloads {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 8px 0 rgba(38,80,100,0.04);
  padding: 20px 14px;
  flex: 1 1 220px;
  min-width: 180px;
}
.article-list h3, .video-list h3, .downloads h3 {
  font-size: 1.08rem;
  margin-bottom: 13px;
}
.article-list ul, .video-list ul, .downloads ul {
  list-style: disc inside;
}
.article-list li, .video-list li, .downloads li {
  margin-bottom: 8px;
  font-size: 1em;
}

/* News List */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.news-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px 0 rgba(38,80,100,0.06);
  padding: 22px 18px;
  border-left: 6px solid var(--color-primary);
  transition: box-shadow 0.18s, transform 0.14s;
}
.news-item.promoted {
  border-left: 6px solid var(--color-secondary);
  background: #f3f7f8;
  box-shadow: 0 3px 18px 0 rgba(60,168,158,0.07);
}
.news-item:hover {
  box-shadow: 0 4px 16px 0 rgba(60,168,158,0.12);
  transform: scale(1.012);
}

/* Partners Logos */
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-bottom: 18px;
}
.partners-logos img {
  width: 66px;
  height: auto;
  filter: grayscale(0.2) opacity(0.89);
}

/* Team List  */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.team-member {
  background: #f3f5f9;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(22,48,70,0.04);
  padding: 18px 17px;
  flex: 1 1 230px;
  min-width: 180px;
  margin-bottom: 16px;
  transition: box-shadow 0.15s, background 0.13s;
}
.team-member h3 {
  color: var(--color-primary);
  margin-bottom: 7px;
  font-size: 1.12rem;
}
.team-member p {
  color: #2d475a;
  font-size: 0.96rem;
  margin-bottom: 5px;
}

/* Text sections (WYSIWYG) */
.text-section {
  font-size: 1rem;
  color: var(--color-black);
  line-height: 1.62;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul {
  margin-left: 16px;
  list-style: disc inside;
  margin-bottom: 12px;
}
.text-section li {
  margin-bottom: 5px;
}

/* ====================================================== */
/* Footer                                                */
/* ====================================================== */
footer {
  background: #233946;
  color: #fff;
  width: 100%;
  padding: 34px 0 0 0;
  border-top: 1.5px solid #e6e8ed;
  box-shadow: 0 -1px 15px 0 rgba(38,80,100,0.04);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #f1faf9;
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 0.93;
  transition: color 0.18s, opacity 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus { color: var(--color-accent); opacity: 1; }
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 4px;
}
.contact-info {
  font-size: .99rem;
  color: #e0e7ee;
}
.footer-contact img {
  width: 46px;
  height: auto;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-bottom: 8px;
}
.footer-social a img {
  width: 29px;
  height: 29px;
  filter: grayscale(0.25) contrast(1.18);
  transition: filter 0.15s;
}
.footer-social a:hover img {
  filter: grayscale(0) drop-shadow(0 1px 3px #60A89E80);
}
.footer-copy {
  color: #b8c3d1;
  font-size: 0.97rem;
  margin-bottom: 18px;
}

@media (min-width: 700px) {
  footer .container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px;
  }
  .footer-menu { flex: 1 1 400px; }
  .footer-contact { flex: 2 1 330px; }
  .footer-social { flex: 1 1 150px; }
  .footer-copy { flex-basis: 100%; }
}
@media (max-width: 576px) {
  .footer-contact, .footer-menu, .footer-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-social { margin-top: 10px; }
}

/* ====================================================== */
/* Cookie Consent Banner + Modal                          */
/* ====================================================== */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #f7fafc;
  border-top: 2px solid var(--color-primary);
  box-shadow: 0 -2px 24px 0 rgba(38,80,100,0.15);
  z-index: 1300;
  padding: 24px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.37s cubic-bezier(.7,.22,.36,1);
}
#cookie-consent-banner.hide {
  transform: translateY(200px);
  pointer-events: none;
  opacity: 0;
}
#cookie-consent-banner p {
  flex: 1 1 300px;
  color: var(--color-black);
  font-size: 1rem;
  margin: 0 16px 0 0;
}
#cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
#cookie-consent-banner button {
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 8px 0 rgba(60,168,158,0.07);
}
#cookie-consent-banner button:last-child {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
#cookie-consent-banner button:hover, #cookie-consent-banner button:focus {
  background: var(--color-primary);
  color: #fff;
}
#cookie-consent-banner button:last-child:hover, #cookie-consent-banner button:last-child:focus {
  background: #ffe7a9;
  color: var(--color-primary);
}
@media (max-width: 720px) {
  #cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 19px 6px;
    font-size: .97rem;
  }
  #cookie-consent-banner p { margin-bottom: 10px; }
}

#cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(37,80,100,0.72);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.22s;
}
#cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
#cookie-modal {
  background: #fff;
  border-radius: 13px;
  max-width: 430px;
  width: 92vw;
  padding: 32px 26px 23px 26px;
  box-shadow: 0 4px 36px 0 rgba(38,80,100,0.23);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
#cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.3em;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f5f8fa;
  border-radius: 8px;
  padding: 14px 0 14px 12px;
  margin-bottom: 12px;
}
.cookie-category strong { color: var(--color-primary); min-width: 120px; font-size: 1em; }
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--color-secondary);
}
.cookie-category .always-on {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.97em;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal-actions button {
  border-radius: 6px;
  border: none;
  background: var(--color-secondary);
  color: #fff;
  font-size: 1em;
  font-weight: 600;
  padding: 9px 26px;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal-actions button:last-child {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-modal-actions button:last-child:hover, .cookie-modal-actions button:last-child:focus {
  background: #ffe7a9;
  color: var(--color-primary);
}
#cookie-modal .close-modal {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.7em;
  background: none;
  color: var(--color-gray-dark);
  border: none;
  cursor: pointer;
  z-index: 3;
}

/* ====================================================== */
/* Responsive Layouts & Mobile Adjustments                */
/* ====================================================== */
@media (max-width: 1180px) {
  .container {
    max-width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .card-container, .content-grid, .feature-grid, .resource-list, .team-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.08rem; }
  .cta-button {
    padding: 10px 12px;
    font-size: 1em;
    margin-left: 0;
    margin-top: 10px;
  }
  .project-card, .card, .feature-item, .article-list, .video-list, .downloads, .team-member {
    min-width: 150px;
    padding: 16px 10px;
  }
  .filters button {
    font-size: .98em;
    padding: 6px 10px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
  .section {
    padding: 10px 0 !important;
    border-radius: 5px;
  }
}

/* ====================================================== */
/* Animations & Microinteractions                         */
/* ====================================================== */
.cta-button, .filters button, .card, .project-card, .feature-item, .news-item, .resource-list > div, .testimonial-card {
  transition: box-shadow .18s, background .18s, color .18s, border .19s, transform .21s;
}
/* Button focus outline */
.cta-button:focus, .filters button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* General focus for accessibility */
:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ====================================================== */
/* Helper Classes                                         */
/* ====================================================== */
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }
.align-center { align-items: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }

/* Hide visually, show for screen readers */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* End of CSS */