/* =========================
   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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
  min-height: 100vh;
  background: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #181818;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { padding-left: 2em; }
img { max-width: 100%; display: block; border: 0; }

/* ===============
   Font Imports
   =============== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

/* =====================
   Color Palette
   ===================== */
:root {
  --primary: #234E70;
  --secondary: #0A174E;
  --accent: #F5B900;
  --white: #fff;
  --black: #181818;
  --gray-100: #f7f7f7;
  --gray-200: #ededed;
  --gray-300: #d2d7df;
  --gray-600: #71767A;
  --gray-700: #3b3d3f;
  --gray-900: #151515;
  --shadow: rgba(10,23,78,0.06);
  --shadow-dark: rgba(10,23,78,0.12);
}

/* =====================
   Typography Hierarchy
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.18;
  color: #0A174E;
  margin-bottom: 16px;
  transition: color 0.2s;
}
h1 {
  font-size: 2.5rem;
  color: #181818;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.15rem;
  font-weight: 700;
}
p, ul, ol, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #222;
  margin-bottom: 16px;
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
}
.text-section h2, .text-section h3 {
  color: #181818;
}
.text-section {
  color: #222;
}

/* =====================
   Common Spacing & Containers
   ===================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-banner .content-wrapper{
  background-color: var(--black);
}

/* =====================
   Header & Navigation
   ===================== */
header {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #181818;
  padding: 8px 8px;
  border-radius: 3px;
  line-height: 1;
  position: relative;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--primary);
  background: var(--gray-200);
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 100px;
  border: none;
  box-shadow: 0 2px 10px var(--shadow);
  transition: background 0.25s, color 0.2s, box-shadow 0.25s, transform 0.1s;
  cursor: pointer;
  margin-left: 20px;
  text-align: center;
  display: inline-block;
  letter-spacing: 0.5px;
  outline: none;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent);
  color: var(--secondary);
  box-shadow: 0 4px 18px var(--shadow-dark);
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 1rem;
  margin-left: 20px;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s, transform 0.1s;
  box-shadow: 0 2px 10px var(--shadow);
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  box-shadow: 0 5px 20px var(--shadow-dark);
  transform: translateY(-2px) scale(1.04);
}

/* MOBILE BURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--black);
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--gray-200);
  color: var(--primary);
}

/* ==================
   Mobile Menu Overlay
   ================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,23,78,0.98);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  will-change: transform;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: var(--accent);
  border: none;
  margin: 24px 32px 0 0;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  margin-top: 24px;
  padding: 0 48px;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  padding: 18px 0 8px;
  width: 100%;
  transition: color 0.2s, background 0.2s;
  border-radius: 3px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--gray-300);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: rgba(245,185,0,0.10);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
  .btn-primary, .btn-secondary {
    margin-left: 12px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 8px;
    min-height: 56px;
  }
  .logo {
    min-width: 104px;
  }
}

@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    z-index: 100;
  }
  .btn-primary, .btn-secondary {
    display: none;
  }
}

/* =====================
   Hero & CTA Banner
   ===================== */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(95deg, #fff 60%, #ededed 110%);
  border-bottom: 1px solid var(--gray-100);
}
.hero .container {
  align-items: center;
  min-height: 280px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
@media (max-width: 700px) {
  .hero {
    padding: 36px 0 20px;
  }
}

.cta-banner {
  width: 100%;
  background: var(--black);
  color: var(--white);
  padding: 50px 0 50px 0;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.cta-banner .container {
  align-items: center;
}
.cta-banner .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-banner h2, .cta-banner h1 {
  color: var(--white);
}
.cta-banner p {
  color: var(--gray-100);
}
.cta-banner .btn-primary {
  background: var(--accent);
  color: var(--secondary);
  margin: 24px auto 0 auto;
  box-shadow: 0 4px 18px var(--shadow-dark);
}
.cta-banner .btn-primary:hover {
  background: var(--white);
  color: var(--primary);
}

@media (max-width: 700px) {
  .cta-banner {
    padding: 32px 0;
    border-radius: 8px 8px 0 0;
  }
}

/* ===============================
   Feature Grids, Cards, Sections
   =============================== */
.feature-grid,
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 36px 0 16px 0;
  justify-content: flex-start;
}
.feature,
.team-member {
  background: var(--gray-100);
  box-shadow: 0 4px 18px var(--shadow);
  border-radius: 15px;
  padding: 28px 20px 20px 20px;
  min-width: 220px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .22s, transform .18s;
}
.feature:hover, .team-member:hover {
  box-shadow: 0 8px 30px var(--shadow-dark);
  transform: translateY(-4px) scale(1.02);
}
.feature img, .team-member img {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
}
.feature h3, .team-member h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.feature p, .team-member p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.45;
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 36px 0 16px 0;
  justify-content: flex-start;
}
.mission-vision-grid > div {
  flex: 1 1 250px;
  background: var(--gray-100);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 6px var(--shadow);
  min-width: 220px;
}

@media (max-width: 800px) {
  .feature-grid, .mission-vision-grid, .team-profiles {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.accreditations {
  margin-top: 30px;
  background: var(--gray-200);
  padding: 16px 24px;
  border-radius: 10px;
}
.accreditations h3 {
  margin-bottom: 12px;
}

.team-values, .team-expertise {
  margin-top: 32px;
}

/* =====================
   Testimonial Cards
   ===================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  flex: 1 1 320px;
  background: var(--white);
  box-shadow: 0 4px 18px var(--shadow-dark);
  border-radius: 18px;
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  min-width: 260px;
  border-left: 5px solid var(--accent);
  transition: box-shadow .2s, border-color .22s, transform .17s;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 9px 32px rgba(58,58,58,0.15);
  border-left: 5px solid var(--primary);
  transform: scale(1.03);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--gray-900);
  margin: 0;
}
.testimonial-card span {
  color: var(--black);
  font-weight: 600;
  font-size: 0.99rem;
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 18px;
}
.client-logos img {
  height: 36px;
  width: auto;
  opacity: 0.90;
  filter: grayscale(100%);
  transition: filter 0.2s, opacity 0.2s;
}
.client-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 700px) {
  .testimonial-slider, .client-logos {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
    padding: 22px 14px;
  }
}

/* ===============
   Newsletter Benefits
   =============== */
.newsletter-benefits {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.newsletter-benefits ul {
  margin-bottom: 0;
}

/* ==========
   Footer
   ========== */
footer {
  margin-top: 70px;
  background: var(--gray-900);
  color: var(--white);
  padding: 32px 0 24px 0;
  border-radius: 22px 22px 0 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
  justify-content: center;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--white);
  opacity: 0.90;
  transition: color 0.2s, opacity 0.2s;
  padding: 6px 6px;
  border-radius: 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  background: rgba(245,185,0,0.08);
  opacity: 1;
}
.footer-contact {
  color: var(--gray-300);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: 1rem;
}
.footer-branding img {
  height: 30px;
  width: auto;
  filter: grayscale(100%) brightness(4);
  opacity: 0.85;
}
footer span, footer a {
  font-family: 'Open Sans', Arial, sans-serif;
}

@media (max-width: 600px) {
  footer .container {
    gap: 15px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }
}

/* =========================
   Section & List Styling
   ========================= */
.section ul, .section ol, .content-wrapper ul, .content-wrapper ol {
  margin-bottom: 10px;
  margin-left: 18px;
  color: var(--gray-700);
  font-size: 1rem;
  padding-left: 23px;
}
.section li, .content-wrapper li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--gray-100);
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 24px;
  transition: box-shadow 0.2s;
  flex: 1 1 250px;
}
.card:hover {
  box-shadow: 0 8px 24px var(--shadow-dark);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Head office & location map in contact */
.head-office-info {
  background: var(--gray-100);
  padding: 16px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 1.06rem;
  color: var(--gray-600);
}
.location-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: var(--gray-200);
  padding: 14px 18px;
  border-radius: 10px;
  margin-top: 8px;
}
.location-map img {
  height: 34px;
  width: 38px;
}
.location-map span {
  color: var(--gray-900);
  font-size: 1rem;
}

/* Contact details */
.contact-details ul {
  list-style: none;
  padding-left: 0;
  color: var(--gray-700);
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.contact-details img {
  width: 22px; height: 22px;
  opacity: .65;
  vertical-align: middle;
}
.contact-details a { color: var(--primary); }
.contact-details a:hover { text-decoration: underline; }

/* ===============================
   Cookie Consent Banner & Modal
   =============================== */
.cookie-banner {
  position: fixed;
  z-index: 20000;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--gray-900);
  color: var(--white);
  box-shadow: 0 -2px 18px var(--shadow-dark);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 26px 32px;
  font-size: 1rem;
  border-top: 4px solid var(--accent);
  transition: transform .44s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 320px;
  max-width: 560px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  border: none;
  outline: none;
  border-radius: 24px;
  font: 700 1rem 'Montserrat', Arial, sans-serif;
  padding: 9px 22px;
  cursor: pointer;
  margin-left: 8px;
  margin-right: 0;
  box-shadow: 0 1px 8px var(--shadow);
  transition: background 0.25s, color 0.18s, box-shadow 0.22s;
}
.cookie-banner .accept-btn {
  background: var(--accent);
  color: var(--secondary);
}
.cookie-banner .accept-btn:hover {
  background: var(--primary);
  color: var(--white);
}
.cookie-banner .reject-btn {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--gray-200);
}
.cookie-banner .reject-btn:hover {
  background: var(--primary);
  color: var(--accent);
}
.cookie-banner .settings-btn {
  background: transparent;
  border:1px solid var(--accent);
  color: var(--accent);
}
.cookie-banner .settings-btn:hover {
  background: var(--accent);
  color: var(--secondary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 14px 24px;
    font-size: .97rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 10px;
  }
  .cookie-banner button {
    margin-left: 0;
  }
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 20010;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(10,23,78, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  color: var(--secondary);
  border-radius: 14px;
  padding: 38px 36px 24px 36px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 8px 36px var(--shadow-dark);
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  transform: scale(0.90);
  opacity: 0;
  transition: transform .33s cubic-bezier(.68,-0.55,.27,1.55), opacity .2s;
}
.cookie-modal-overlay.open .cookie-modal {
  transform: scale(1);
  opacity: 1;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--primary);
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 50%;
  transition: background .22s, color .18s;
}
.cookie-modal-close:hover {
  background: var(--gray-200);
  color: var(--secondary);
}
.cookie-modal h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal .category-label {
  font-weight: 700;
  font-size: 1.09rem;
  color: var(--secondary);
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 46px;
  display: inline-block;
  height: 24px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gray-200);
  border-radius: 24px;
  transition: background 0.2s;
}
.toggle-slider:before {
  position: absolute;
  content: '';
  height: 19px;
  width: 19px;
  left: 2.5px;
  bottom: 2.5px;
  background: var(--secondary);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}
.toggle-switch input:checked + .toggle-slider:before {
  background: var(--accent);
  transform: translateX(20px);
}
.cookie-modal .category-desc {
  font-size: .97rem;
  color: var(--gray-700);
  margin-left: 60px;
}
.cookie-modal .save-btn {
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  border: none;
  padding: 13px 32px;
  font-size: 1.08rem;
  box-shadow: 0 3px 16px var(--shadow);
  margin-top: 12px;
  align-self: flex-end;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
}
.cookie-modal .save-btn:hover {
  background: var(--accent);
  color: var(--secondary);
  box-shadow: 0 8px 32px var(--shadow-dark);
}
@media (max-width: 420px) {
  .cookie-modal {
    padding: 18px 6vw 12px 6vw;
    min-width: 0;
  }
}

/* ===============================
   Miscellaneous Enhancements
   =============================== */
::-webkit-input-placeholder { color: #BABABA; }
::-moz-placeholder { color: #BABABA; }
:-ms-input-placeholder { color: #BABABA; }
::placeholder { color: #BABABA; }

hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 16px 0;
}

/* Links in body content */
.content-wrapper a:not(.btn-primary):not(.btn-secondary) {
  color: var(--primary);
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.content-wrapper a:hover:not(.btn-primary):not(.btn-secondary) {
  color: var(--accent);
}

/* Remove webkit tap highlight */
* {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* ================
   Responsive Rules
   ================ */
@media (max-width: 750px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .hero {
    padding: 26px 0 12px;
  }
}

@media (max-width: 550px) {
  h1 {
    font-size: 1.34rem;
  }
  h2 {
    font-size: 1.07rem;
  }
  .feature, .team-member {
    padding: 14px 10px 12px 10px;
  }
}

/* Prevent overlapping, ensure cards/sections have spacing */
.section > *, .content-wrapper > * {
  margin-bottom: 20px !important;
}
.section > *:last-child, .content-wrapper > *:last-child { margin-bottom: 0 !important; }

/******
Zesty Expanse Monochrome Sophisticated: Dramatic Contrast SIMPLIFIED MONOCHROME with Brand Accents
******/
body, .section, .content-wrapper, .card, .testimonial-card, .feature, .team-member, .cookie-modal {
  background-color: #fff;
}
.card, .testimonial-card, .feature, .team-member, .accreditations, .mission-vision-grid > div, .newsletter-benefits, .head-office-info, .location-map {
  border: 1px solid #E4E6EA;
}

/* Subtle shadow on cards/elements */
.card, .testimonial-card, .feature, .team-member {
  box-shadow: 0 2px 12px 0 rgba(34,34,34,.07);
}

/**** Animations ****/
.btn-primary, .btn-secondary, .feature, .team-member, .testimonial-card, .card {
  transition: box-shadow 0.2s, color 0.18s, background 0.18s, transform 0.13s;
}
.cookie-banner, .cookie-modal {
  transition: all 0.33s cubic-bezier(.68,-0.55,.27,1.55);
}

/**** Mobile-first layout adjustments */
@media (max-width: 800px) {
  .container {
    max-width: 100vw;
  }
  .footer-branding, .footer-nav, .footer-contact {
    flex-direction: column;
    align-items: center;
  }
}

/**** Hide outline except keyboard focus */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px dashed var(--primary);
  outline-offset: 2px;
}

/**** Decorative, never content-positioned absolute ****/
/* Use only for icons/ornaments if needed */
