/* CSS RESET & NORMALIZATION */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F6FA;
  color: #15304C;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #15304C;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 16px;  }
h2 { font-size: 2rem; margin-bottom: 12px;  }
h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p, ul, ol, li { margin-bottom: 12px; }
strong { font-weight: 700; }
a {
  color: #15304C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8EC127;
  outline: none;
}
ul, ol { padding-left: 24px; }
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* STRUCTURED CONTAINER & SECTION SPACING */
.container {
  display: flex;
  flex-direction: column;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(21,48,76, 0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* FLEX LAYOUT PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(21,48,76, 0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  min-width: 260px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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: #F5F6FA;
  border-left: 5px solid #8EC127;
  border-radius: 16px;
  margin-bottom: 20px;
  min-width: 275px;
  max-width: 540px;
  box-shadow: 0 4px 14px rgba(21,48,76,0.10);
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SHARED FLEX GRIDS FOR FEATURE SECTIONS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 230px;
  min-width: 180px;
  background: #F5F6FA;
  border-radius: 14px;
  box-shadow: 0 2px 7px rgba(21,48,76,0.07);
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature-grid img {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 6px rgba(21,48,76,0.07);
  margin-bottom: 8px;
}

/* HEADER/MAIN NAVBAR */
header {
  background: #15304C;
  color: #fff;
  box-shadow: 0 2px 11px rgba(21,48,76,0.07);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 20px;
  min-height: 80px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
header nav a {
  color: #fff;
  font-family: 'Exo', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1rem;
  position: relative;
  padding: 4px 4px;
  transition: color 0.18s;
}
header nav a:hover, header nav a.active {
  color: #8EC127;
}
header img {
  max-height: 54px;
  width: auto;
  margin-right: 20px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 24px;
  background: #8EC127;
  color: #15304C;
  font-family: 'Exo', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.08rem;
  transition: background 0.15s, transform 0.14s, box-shadow 0.16s;
  box-shadow: 0 1.5px 8px rgba(21,48,76,0.05);
  margin-left: 24px;
  cursor: pointer;
  border: none;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #15304C;
  color: #fff;
  transform: translateY(-2.5px) scale(1.03) skew(-2deg, 0deg);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 18px;
  background: #15304C;
  color: #fff;
  font-family: 'Exo', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1rem;
  border: none;
  outline: none;
  box-shadow: 0 1px 5px rgba(21,48,76,0.05);
  transition: background 0.16s, transform 0.16s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #8EC127;
  color: #15304C;
  transform: scale(1.04) skew(-2deg, 0deg);
}

/* MOBILE MENU (Burger Nav) */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 26px;
  z-index: 301;
  background: #8EC127;
  color: #15304C;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.1rem;
  cursor: pointer;
  transition: background 0.13s, box-shadow 0.13s;
  box-shadow: 0 1.5px 8px rgba(21,48,76,0.09);
}
.mobile-menu-toggle:focus {
  outline: 2px solid #15304C;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F5F6FA;
  z-index: 500;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 24px;
  box-shadow: 0 0 0 999px rgba(21,48,76,0.18);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.86,0,.07,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #15304C;
  color: #8EC127;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-self: flex-end;
  margin: 0 22px 10px 0;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(21,48,76,0.09);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #8EC127;
  color: #15304C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100vw;
  align-items: flex-start;
  padding: 20px 40px;
}
.mobile-nav a {
  padding: 16px 0 8px 0;
  color: #15304C;
  font-family: 'Exo', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border .22s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #8EC127;
  border-bottom: 2.5px solid #8EC127;
}

/* MAIN CONTENT TYPOGRAPHY AND CARDS */
main {
  margin: 0 0 60px 0;
}
.partner-logos {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.topic-tags {
  display: flex;
  gap: 14px;
  margin: 14px 0 10px 0;
}
.topic-tags span {
  display: inline-block;
  background: #8EC127;
  color: #fff;
  font-family: 'Exo', sans-serif;
  font-size: 0.98rem;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.01em;
}

/* CARDS (FOR ARTICLES, EVENTS, ETC.) */
.content-wrapper > div > div, .content-wrapper > div.card, .content-wrapper > div {
  margin-bottom: 20px;
}
.content-wrapper > div:last-child, .content-wrapper > div.card:last-child {
  margin-bottom: 0;
}
.card a, .content-wrapper > div a {
  color: #fff;
  font-weight: 500;
  border-bottom: 1.5px solid #8EC127;
  transition: color .18s, border .19s;
}
.card a:hover,.content-wrapper > div a:hover  {
  color: #8EC127;
  border-bottom: 2.5px solid #15304C;
}

/* FOOTER */
footer {
  background: #15304C;
  color: #fff;
  padding: 36px 0 24px 0;
  box-shadow: 0 -1px 10px rgba(21,48,76,0.06);
}
footer .container {
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #8EC127;
  font-size: 1rem;
  font-family: 'Exo', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 1.5px 0;
  border-bottom: 1.2px solid transparent;
}
.footer-nav a:hover, .footer-nav a:focus {
  border-bottom: 2.5px solid #8EC127;
}
.branding {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.branding img {
  width: 50px;
  height: auto;
  border-radius: 8px;
}
.branding span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.82;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 1rem;
  color: #fff;
}
.footer-contact img {
  width: 24px;
  height: 24px;
  margin-right: 6px;
  vertical-align: middle;
  border-radius: 7px;
  background: #8EC127;
  padding: 2px;
}
.footer-contact span, .footer-contact a {
  color: #fff;
  margin-right: 16px;
  font-size: .98rem;
  vertical-align: middle;
}

/* FORMS, INPUTS (For future expansion) */
input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
}
input, textarea, select {
  width: 100%;
  font-size: 1.05rem;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid #d3dbe7;
  margin-bottom: 20px;
  transition: border 0.18s;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: #8EC127;
  outline: 1.5px solid #8EC127;
}
/* Utility: visually hidden for accessibility */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  white-space: nowrap;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background: #fff;
  color: #15304C;
  box-shadow: 0 -2px 14px rgba(21,48,76,0.11);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 24px 18px 16px 18px;
  font-size: 1.03rem;
  transition: transform 0.28s;
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner .cookie-btn {
  font-family: "Exo", Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 18px;
  padding: 9px 23px;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.17s, color 0.12s, transform 0.14s;
}
.cookie-banner .cookie-btn.accept {
  background: #8EC127;
  color: #fff;
  box-shadow: 0 1px 4px rgba(21,48,76,0.09);
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #15304C;
  border: 1.4px solid #15304C;
}
.cookie-banner .cookie-btn.settings {
  background: #F5F6FA;
  color: #15304C;
  border: 1.4px solid #8EC127;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #15304C;
  color: #fff;
}

/* COOKIE MODAL POPUP */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(21,48,76,0.28);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .25s;
}
@keyframes fadeIn {
  from { opacity: 0;} to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(21,48,76,0.19);
  padding: 32px 32px 24px 32px;
  min-width: 320px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal h3 {
  font-size: 1.22rem;
  font-family: 'Exo', Arial, sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  font-weight: 500;
  gap: 10px;
  cursor: pointer;
}
.cookie-modal-checkbox {
  accent-color: #8EC127;
}
.cookie-modal-footer {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

/* ANIMATION HELPERS */
.fade-in {
  animation: fadeIn .24s cubic-bezier(.33,.54,.58,.97);
}
.slide-in-left {
  animation: slideInLeft .26s cubic-bezier(.16,.9,.75,1.09);
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0;} to { transform: translateX(0); opacity:1; }
}

/* RESPONSIVENESS - Mobile First */
@media (max-width: 1150px) {
  .container { max-width: 98vw; }
  header .container { flex-wrap: wrap; padding: 0 10px;}
}
@media (max-width: 980px) {
  main, .section { padding-left: 0; padding-right: 0; }
  .feature-grid > div { min-width: 150px; padding: 17px 12px 13px 12px; }
  footer .container { padding: 0 12px; }
  .section { padding: 32px 7px; }
}
@media (max-width: 860px) {
  header .container { flex-direction: column; align-items: flex-start; gap: 14px; min-height: 64px;}
  .btn-primary { margin-left: 0; margin-top: 14px; }
  header nav { gap: 13px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .container { max-width: 100vw; padding: 0 8px; }
  .card { flex: 1 1 160px; min-width: 150px; padding: 14px 8px; }
  .section { padding: 16px 3px; margin-bottom: 36px; }
  .feature-grid { gap: 12px; }
  .feature-grid > div { padding: 11px 6px 11px 6px; min-width: 90px;}
  .footer-contact, .footer-nav { gap: 14px; font-size: .93rem; }
  .branding span { font-size: .91rem; }
  .testimonial-card { flex-direction: column; max-width: 96vw; gap: 6px; font-size: 0.98rem; padding: 13px; }
  .cookie-banner { flex-direction: column; gap: 18px; padding: 14px 7px 9px 7px; font-size: .99rem; }
  .cookie-modal { padding: 19px 9px 12px 9px; min-width: 0; }
}
@media (max-width: 630px) {
  header .container, footer .container { padding: 0 3px; }
}
@media (max-width: 600px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section { flex-direction: column !important; gap: 14px; }
  header nav { display: none !important; }
  .btn-primary { align-self: flex-start; min-width: 99px; margin-top: 5px; }
  .mobile-menu-toggle { display: block; }
  .branding, .footer-contact { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-nav { flex-direction: column; gap: 7px; font-size: .92rem; }
  .card { min-width: 125px; }
}
@media (max-width: 400px) {
  .branding span, .footer-contact span, .footer-contact a { font-size: .87rem; }
  .btn-primary, .btn-secondary, .cookie-banner .cookie-btn { font-size: .91rem; padding: 9px 13px; }
}

/* GEOMETRIC/STRUCTURED DECORATIVE ANGLES & ACCENTS */
h1, h2, h3 {
  text-transform: none;
  letter-spacing: 0.01em;
  font-family: 'Exo', 'Roboto', Arial, sans-serif;
}
.section {
  border-radius: 24px 48px 24px 48px / 22px 44px 22px 44px;
  border: 2.5px solid #15304C11;
  position: relative;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  right: 24px; top: 24px;
  width: 38px; height: 38px;
  border-radius: 8px 40px 20px 50px / 30px 46px 16px 35px;
  background: #8EC12711;
  z-index: 0;
}
.section > .container, .section .container > .content-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .section { border-radius: 14px 21px 14px 21px / 12px 19px 12px 19px; }
  .section:before { width: 23px; height: 23px; right: 7px; top: 7px; }
}
.feature-grid > div, .card, .testimonial-card {
  border-bottom: 4.5px solid #8EC12755;
  border-radius: 10px 34px 10px 22px / 12px 28px 14px 19px;
  position: relative;
}


/* FOCUS STATES FOR ACCESSIBILITY */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .cookie-btn:focus {
  outline: 2.5px solid #8EC127;
  outline-offset: 2.5px;
  z-index: 10;
}

/* List styling (for geometric flavor) */
ul li, ol li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
}
ul li:before, ol li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: #8EC127;
}

/* Selection Styling */
::selection {
  background: #8EC12733;
}

/* Hide Mobile Nav on Desktop */
@media (min-width: 601px) {
  .mobile-menu, .mobile-menu.open { display: none !important; }
  .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}

/* Partner-Logo below Testimonials */
.partner-logos {
  gap: 24px;
  margin-top: 14px;
}
.partner-logos img {
  width: 68px;
  height: auto;
  filter: grayscale(12%) saturate(1.15);
  opacity: .77;
}

/* Misc. Fine tuning for geometric/structured style */
hr {
  border: none;
  border-bottom: 2.5px solid #8EC12733;
  margin: 28px 0;
}

/* Scrollbar Styling (modern browsers) */
::-webkit-scrollbar {
  width: 12px; background: #F5F6FA;
}
::-webkit-scrollbar-thumb {
  background: #15304C44;
  border-radius: 10px;
}
/* Edge/FF fallback */
body {
  scrollbar-color: #15304C44 #F5F6FA;
  scrollbar-width: thin;
}

/* END OF STYLE.CSS */
