/* --- 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  line-height: 1.5;
  font-family: Arial, sans-serif;
  background: #f9fafb;
  color: #223047;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
udl, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
}

/* --- VIBRANT ENERGETIC THEME (BRAND COLORS) --- */
:root {
  --primary: #223047;
  --secondary: #72848C;
  --accent: #FFD700;
  --vibrant-blue: #3296FA;
  --energy-pink: #f94f7b;
  --electric-cyan: #19ffe7;
  --electric-green: #1ced6a;
  --card-bg: #fff;
  --gray-light: #f4f6fa;
  --gray-dark: #20303b;
  --shadow: 0 4px 24px 0 rgba(50, 150, 250, 0.10), 0 1.5px 4px 0 rgba(220, 72, 150, 0.07);
  --radius: 18px;
}


/* --- TYPEFACE & HEADINGS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Arial, serif;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 0.8em;
  color: var(--primary);
  letter-spacing: .02em;
}
h1 {
  font-size: 2.5rem;
  color: var(--vibrant-blue);
  margin-bottom: 0.6em;
}
h2 {
  font-size: 2rem;
  color: var(--energy-pink);
}
h3 {
  font-size: 1.375rem;
  color: var(--primary);
}
h4 {
  font-size: 1.125rem;
}
p, li {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: var(--gray-dark);
}
p {
  margin-bottom: 1.2em;
}
strong {
  color: var(--primary);
  font-weight: 700;
}
em {
  color: var(--electric-green);
  font-style: italic;
}

/* --- GENERAL CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* --- HEADER / NAVIGATION --- */
header {
  background: var(--primary);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 72px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
header img {
  height: 42px;
  margin-right: 32px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #fff;
  font-weight: 500;
  font-size: 1.06rem;
  padding: 8px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:not(.cta-primary):hover,
.main-nav a:not(.cta-primary):focus {
  color: var(--accent);
}
.main-nav .cta-primary {
  margin-left: 18px;
}

/* --- BUTTONS & LINKS --- */
.cta-primary,
.cta-secondary {
  display: inline-block;
  font-family: 'Roboto Slab', Arial, serif;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--radius);
  border: none;
  font-size: 1.2rem;
  text-align: center;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  box-shadow: 0 3px 16px 0 rgba(252, 255, 107, 0.09);
  letter-spacing: 0.05em;
}
.cta-primary {
  background: linear-gradient(90deg, var(--accent) 40%, var(--vibrant-blue) 100%);
  color: #223047;
  border: 2px solid var(--accent);
  text-shadow: 0 1px 8px #fff6;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, var(--energy-pink) 20%, var(--vibrant-blue) 100%);
  color: #fff;
  box-shadow: 0 4px 32px 0 var(--accent)66;
}
.cta-secondary {
  background: none;
  color: var(--vibrant-blue);
  border: 2px solid var(--vibrant-blue);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--vibrant-blue);
  color: #fff;
}
/* Links */
a:focus {
  outline: 2px solid var(--electric-cyan);
  outline-offset: 2px;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.1rem;
  display: none;
  margin-left: 24px;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 48, 71, 0.98);
  z-index: 300;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.78,.13,.15,.86);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 54px;
  box-shadow: 0 0 32px 0 #111a;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: var(--accent);
  background: none;
  border: none;
  align-self: flex-end;
  margin: 16px 26px 0 0;
  padding: 8px 12px;
  border-radius: 100%;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #ffd70022;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 30px 0 0 38px;
}
.mobile-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.35;
  transition: color 0.14s, background 0.14s;
  padding: 8px 0;
  border-radius: 8px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--accent);
  background: #23305566;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(90deg, var(--energy-pink) 0%, var(--vibrant-blue) 95%);
  color: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 0 0 48px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 340px;
  padding-top: 40px;
  padding-bottom: 20px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}
.hero h1, .hero h2 {
  color: #fff;
  text-shadow: 0 4px 24px #3336;
}
.hero p {
  font-size: 1.25rem;
  color: #f4faff;
}
.hero .cta-primary {
  margin-top: 18px;
}

/* --- SECTION STYLES & FLEX PATTERNS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--gray-light);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px 0 rgba(80,180,255,0.03);
}
section .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- CARD CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 28px 24px 28px;
  min-width: 260px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 6px 40px 0 var(--vibrant-blue)33;
  transform: translateY(-4px) scale(1.025);
}
/* Special testimonial cards */
.testimonial-card {
  background: #fff;
  box-shadow: 0 2px 24px 0 #22304709;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 8px;
  min-height: 94px;
  transition: box-shadow 0.18s;
  border-left: 6px solid var(--energy-pink);
}
.testimonial-card p {
  color: #223047;
  font-style: italic;
  font-size: 1.1rem;
}
.testimonial-card span {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-left: 14px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px 0 var(--accent)22;
}

/* --- FEATURE & SERVICE SECTION LAYOUTS --- */
.feature-list, .initiative-grid, .core-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-list > div, .initiative-grid > div, .core-values-grid > div {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 22px 20px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.17s;
  border-top: 4px solid var(--electric-cyan);
}
.feature-list > div:hover, .initiative-grid > div:hover, .core-values-grid > div:hover {
  box-shadow: 0 8px 44px 0 var(--energy-pink)16;
  border-top-color: var(--energy-pink);
  transform: translateY(-3px) scale(1.02);
}
.feature-list img, .initiative-grid img, .core-values-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 10px var(--vibrant-blue)19);
}

/* --- CONTENT FLEX/GRID PATTERNS --- */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- CONTACT DETAILS --- */
.contact-details-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-bottom: 22px;
}
.contact-details-inline p {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--gray-dark);
  font-weight: 500;
}
.contact-details-full {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-details-full p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
}
.map {
  margin: 25px 0;
  padding: 12px;
  border-radius: var(--radius);
  box-shadow: 0 1px 8px 0 #146cc12a;
  background: #fff;
}

/* --- LISTS AND ICON LISTS --- */
ul {
  margin-left: 0;
  margin-bottom: 1.1em;
  padding-left: 0;
  list-style: none;
}
ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px;
}
ul li img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 6px;
}

/* --- RESPONSIVE DESIGN (MOBILE-FIRST) --- */
@media (max-width: 1280px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 1000px) {
  .container {
    max-width: 90vw;
  }
}
@media (max-width: 850px) {
  .feature-list, .initiative-grid, .core-values-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .hero .container, .container {
    padding: 0 7vw;
  }
  .hero {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
  }
  .feature-list > div, .initiative-grid > div, .core-values-grid > div {
    min-width: 220px;
    flex: 1 1 100%;
    padding: 17px 12px 18px 16px;
  }
  .content-wrapper, section .container, section {
    padding: 12px 0!important;
  }
  .contact-details-inline {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  section {
    margin-bottom: 32px;
    padding: 23px 5.2vw;
  }
  .card, .testimonial-card, .feature-list > div, .initiative-grid > div, .core-values-grid > div {
    padding: 14px 9px 16px 11px;
    min-width: 0;
    flex: 1 1 100%;
  }
  .main-nav {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- TABLES (PRIVACY/COOKIES POLICY) --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
th, td {
  border: 1px solid var(--secondary);
  padding: 12px 10px;
  text-align: left;
}
th {
  background: var(--gray-light);
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 26px 0 18px 0;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.footer-nav a {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.04rem;
  transition: color 0.17s;
  border-radius: 6px;
  padding: 4px 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--energy-pink);
}
.footer-contact {
  color: #f2f2f2;
  font-size: 0.98rem;
  margin-bottom: 2px;
}
@media (max-width: 600px) {
  footer .container {
    font-size: 0.9rem;
    gap: 10px;
  }
  .footer-nav {
    gap: 10px;
  }
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 16px 0 #22304722;
  color: var(--primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 16px 10vw 18px 4vw;
  font-size: 1.09rem;
  border-top: 4px solid var(--accent);
  transition: transform 0.38s cubic-bezier(.87,.11,.11,.93);
}
.cookie-banner.hidden {
  transform: translateY(200%);
  pointer-events: none;
}
.cookie-banner .cookie-message {
  max-width: 480px;
  margin-right: 20px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  padding: 10px 20px;
  color: #223047;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .accept-btn {
  background: var(--accent);
  color: #223047;
  border: 2px solid var(--accent);
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: var(--electric-green);
  color: #fff;
}
.cookie-banner .reject-btn {
  background: #dfeaf9;
  color: var(--energy-pink);
  border: 2px solid var(--energy-pink);
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: var(--energy-pink);
  color: #fff;
}
.cookie-banner .settings-btn {
  background: none;
  color: var(--vibrant-blue);
  border: 2px solid var(--vibrant-blue);
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: var(--vibrant-blue);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 6vw 18px 3vw;
    gap: 12px;
  }
  .cookie-banner .cookie-message {
    margin-right: 0;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 10000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: #223047bb;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px 18px 0 0;
  max-width: 410px;
  width: 98vw;
  margin-bottom: 0;
  box-shadow: 0 4px 28px 0 #22304766;
  color: var(--primary);
  padding: 34px 22px 18px 28px;
  font-size: 1.1rem;
  animation: cookieModalPop 0.34s cubic-bezier(.98,.1,.18,.98);
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@keyframes cookieModalPop {
  from { transform: translateY(100vh) scale(0.9); opacity: 0; }
  to {   transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal .modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  color: var(--energy-pink);
  font-size: 1.8rem;
  padding: 6px 10px;
  border-radius: 18px;
  transition: background 0.14s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #f9c5d8;
}
.cookie-modal h3 {
  margin-bottom: 0.3em;
  color: var(--primary);
  font-size: 1.23rem;
  font-family: 'Roboto Slab', Arial, serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.cookie-modal .category-label {
  flex: 1 1 60%;
  font-weight: 600;
  margin-right: 8px;
}
.cookie-modal .toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #ccd2ee;
  border-radius: 16px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-modal .toggle:checked {
  background: var(--electric-green);
}
.cookie-modal .toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 100%;
  transition: left 0.18s;
}
.cookie-modal .toggle:checked:before {
  left: 19px;
}
.cookie-modal .toggle[disabled] {
  background: #f4f6fa;
  cursor: default;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 13px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 9px 16px;
  border-radius: 7px;
  font-weight: 600;
}
.cookie-modal .save-btn {
  background: var(--accent);
  color: #223047;
  border: 2px solid var(--accent);
}
.cookie-modal .save-btn:hover, .cookie-modal .save-btn:focus {
  background: var(--vibrant-blue);
  color: #fff;
}
.cookie-modal .cancel-btn {
  background: none;
  color: var(--energy-pink);
  border: 2px solid var(--energy-pink);
}
.cookie-modal .cancel-btn:hover, .cookie-modal .cancel-btn:focus {
  background: var(--energy-pink);
  color: #fff;
}

/* --- FORM ELEMENTS --- */
input, textarea, select {
  background: #fff;
  border: 1.5px solid var(--secondary);
  border-radius: var(--radius);
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  outline: none;
}
label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

/* --- MICRO-INTERACTIONS & HOVER FX --- */
.card:hover, .feature-list > div:hover, .initiative-grid > div:hover, .core-values-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 8px 44px 0 var(--electric-cyan)16;
  cursor: pointer;
}
button:active {
  transform: scale(0.98);
}
.cta-primary:focus, .cta-secondary:focus {
  outline: 2px solid var(--electric-cyan);
}

/* --- HIGHLIGHT COLORS & ANIMATIONS --- */
mark {
  background: var(--electric-cyan);
  color: var(--primary);
  border-radius: 2px;
  padding: 1.5px 5px;
  font-weight: bold;
}

/* --- UTILITY CLASSES --- */
.mb-0 { margin-bottom: 0!important; }
.mt-0 { margin-top: 0!important; }
.mt-32 { margin-top: 32px!important; }
.text-center { text-align: center; }
.hide-on-mobile { display: block; }
@media (max-width: 690px) {
  .hide-on-mobile { display: none!important; }
}

/* --- OVERLAP PREVENTION & FLEXBOX SPACING RULES --- */
.card, .testimonial-card, .feature-list > div, .initiative-grid > div, .core-values-grid > div, .section {
  margin-bottom: 20px;
}
.card-container, .feature-list, .initiative-grid, .core-values-grid, .content-grid, .text-image-section {
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* END OF CSS */
