/* ======================================
   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, 
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #1e2759;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  color: inherit;
  outline: none;
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ======================================
   VARIABLES & FONTS
   ====================================== */
:root {
  --primary: #1E2759;
  --secondary: #F4BF4F;
  --accent: #FFFFFF;
  --gray-900: #141414;
  --gray-700: #333848;
  --gray-400: #bdbdbd;
  --gray-200: #ededf0;
  --shadow: 0 8px 32px rgba(14,20,40,0.09);
  --radius: 16px;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
  :root {
    --radius: 10px;
  }
}

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

/* ======================================
   TYPOGRAPHY
   ====================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--gray-900);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--primary);
}
h2 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p, ul, ol, li, strong, em {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-700);
}
p {
  margin-bottom: 18px;
}
strong {
  font-weight: 600;
}

.text-section {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ======================================
   LAYOUT CONTAINERS
   ====================================== */
.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 1160px) {
  .container {
    padding: 0 8px;
  }
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .content-wrapper {
    gap: 36px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

/* Gap between Section and Next */
section + section {
  margin-top: 20px;
}

.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div, .feature-list > div {
  background: #fff;
  border-radius: var(--radius);
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 300px;
  padding: 28px 24px 22px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid var(--gray-200);
}
.feature-grid > div:hover {
  box-shadow: 0 12px 32px rgba(14,20,40,0.13);
  transform: translateY(-4px) scale(1.02);
}

@media (max-width:900px) {
  .feature-grid > div, .feature-list > div {
    max-width: 100%;
    min-width: 100%;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 20px;
  min-width: 220px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 48px 8px rgba(30,39,89,0.13);
  transform: translateY(-3px) scale(1.01);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

.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;
  }
}

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

/* ======================================
   HEADER & NAVIGATION
   ====================================== */
header {
  width: 100%;
  background: var(--accent);
  box-shadow: 0 2px 12px 0 rgba(30,39,89,0.09);
  position: relative;
  z-index: 60;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  min-height: 60px;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.logo img {
  max-height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-left: 16px;
}
.main-nav a {
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--primary);
  color: var(--accent);
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
    font-size: 0.99rem;
  }
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(30,39,89,0.10);
  transition: background 0.15s, color 0.15s, box-shadow 0.25s, transform 0.18s;
}
.btn-primary {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: var(--gray-900);
  border: 2px solid var(--secondary);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
  transform: translateY(-1px) scale(1.025);
}

.mobile-menu-toggle {
  background: transparent;
  color: var(--primary);
  font-size: 2rem;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0 8px;
  margin-left: 24px;
  transition: color 0.18s, transform 0.15s;
}
.mobile-menu-toggle:active {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ======================================
   MOBILE MENU
   ====================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19,22,29,0.97);
  color: var(--accent);
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.51,.01,.38,1.25);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--accent);
  background: none;
  font-size: 2.2rem;
  margin: 28px 0 18px 28px;
  cursor: pointer;
  border: none;
  align-self: flex-start;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 18px 32px;
  width: 100%;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.25rem;
  font-family: var(--font-display);
  padding: 12px 8px;
  border-radius: 8px;
  transition: background 0.15s, color 0.14s;
}
.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--gray-900);
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ======================================
   TESTIMONIAL CARDS
   ====================================== */
.testimonial-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 24px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  justify-content: flex-start;
}
.testimonial-card > div {
  flex: 1 1 260px;
  min-width: 220px;
  background: var(--gray-200);
  border-radius: 12px;
  padding: 22px 14px 12px 18px;
  margin-bottom: 0;
  box-shadow: 0 4px 18px 0 rgba(31,36,68,0.06);
  font-family: var(--font-body);
  color: var(--gray-900);
}
.testimonial-card strong {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
}
.testimonial-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 5px;
}
@media (max-width: 800px) {
  .testimonial-card {
    flex-direction: column;
    gap: 16px;
  }
}

/* ======================================
   CONTACT DETAILS & MAP LOCATION
   ====================================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-details img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.75;
}
.map-location {
  background: var(--gray-200);
  border-radius: 10px;
  padding: 16px 18px;
}

/* ======================================
   FOOTER
   ====================================== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 0;
  width: 100%;
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 24px 24px 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.footer-nav a {
  color: var(--accent);
  opacity: 0.92;
  transition: opacity 0.18s, text-decoration 0.16s;
}
.footer-nav a:hover,ll
.footer-nav a:focus {
  text-decoration: underline;
  opacity: 1;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.96rem;
  color: #d4d7e1;
}
.footer img {
  filter: brightness(92%) grayscale(1);
  max-height: 36px;
  margin-bottom: 4px;
}
footer small {
  color: #bdbdbd;
  font-size: 0.9rem;
  margin-top: 8px;
  font-family: var(--font-body);
}
@media (min-width: 690px) {
  .footer {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

/* ======================================
   COOKIE CONSENT BANNER/MODAL
   ====================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #22232C;
  color: var(--accent);
  font-family: var(--font-body);
  padding: 28px 20px 22px 20px;
  box-shadow: 0 -3px 18px 0 rgba(30,39,89,0.18);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 32px;
  z-index: 3000;
  animation: fadeInUp .5s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);} to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #f9f9f9;
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 500px;
}
.cookie-banner .cookie-btn {
  min-width: 130px;
  margin-right: 4px;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  font-family: var(--font-display);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.16s, color 0.16s, transform 0.15s;
}
#cookie-accept {
  background: var(--secondary);
  color: var(--gray-900);
}
#cookie-accept:hover, #cookie-accept:focus {
  background: #fed37c;
  color: #151720;
  transform: scale(1.035);
}
#cookie-reject {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--secondary);
}
#cookie-reject:hover, #cookie-reject:focus {
  background: var(--secondary);
  color: var(--gray-900);
  transform: scale(1.03);
}
#cookie-settings {
  background: var(--primary);
  color: var(--accent);
}
#cookie-settings:hover, #cookie-settings:focus {
  background: #242d68;
  color: var(--secondary);
  transform: scale(1.03);
}

.cookie-modal-bg {
  display: none;
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(23,23,30,0.70);
  justify-content: center;
  align-items: center;
  animation: fadeInBG 0.25s;
}
.cookie-modal-bg.open {
  display: flex;
}
@keyframes fadeInBG {
  from {opacity:0} to {opacity:1}
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: var(--radius);
  padding: 40px 32px 26px 32px;
  min-width: 320px; max-width: 95vw;
  max-width: 480px;
  box-shadow: 0 16px 48px 2px rgba(30,39,89,0.16);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  animation: fadeInBG .37s cubic-bezier(.51,.01,.38,1.25);
}
.cookie-modal h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.33rem;
  margin-bottom: 4px;
}
.cookie-modal label {
  font-size:1rem;
  margin-right: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 4px;
  width: 100%;
}
.cookie-toggle {
  width: 28px;
  height: 16px;
  border-radius: 14px;
  background: var(--gray-400);
  position: relative;
  margin-right: 10px;
  transition: background .22s;
  cursor: pointer;
  display: inline-block;
}
.cookie-toggle[data-checked="true"] {
  background: var(--secondary);
}
.cookie-toggle .toggle-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 0; top: 0;
  transition: left .22s cubic-bezier(.49,.12,.50,1.20);
}
.cookie-toggle[data-checked="true"] .toggle-thumb {
  left: 12px;
  background: #fffde9;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 16px;
  color: var(--primary);
  background: none;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
}
.cookie-category .disabled {
  opacity: 0.7;
  pointer-events: none;
}
@media (max-width:600px) {
  .cookie-modal {
    padding: 30px 10px 18px 10px;
    min-width: unset;
  }
}

/* ======================================
   MISC CLASSES
   ====================================== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* ======================================
   SPACING UTILITY
   ====================================== */
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.pt-32 { padding-top: 32px; }
.pb-32 { padding-bottom: 32px; }

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */
@media (max-width: 1024px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 44px;
  }
  .footer {
    padding: 30px 8px 20px 8px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.19rem; }
  .feature-grid, .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .footer {
    flex-direction: column;
    gap: 15px;
    padding: 24px 5px 10px 5px;
  }
  .section {
    margin-bottom: 30px;
    padding: 20px 0;
    border-radius: 10px;
  }
}
@media (max-width: 490px) {
  .feature-grid > div, .card, .section, .card-content {
    padding: 18px 6px !important;
    border-radius: 8px;
  }
}

/* ======================================
   MICRO-INTERACTIONS / HOVER EFFECTS
   ====================================== */
a, .btn-primary, .btn-secondary, .mobile-menu-close, .mobile-menu-toggle,
#cookie-accept, #cookie-reject, #cookie-settings {
  outline: none;
  transition: outline 0.11s, box-shadow 0.11s;
}
a:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible,
.mobile-menu-close:focus-visible, .mobile-menu-toggle:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--accent);
}

.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
  box-shadow: none;
}

.mobile-menu-close:active,
.mobile-menu-toggle:active {
  color: var(--secondary);
}

/* ======================================
   SCROLLBAR VISUAL
   ====================================== */
body::-webkit-scrollbar {
  width: 12px;
  background: #ececec;
}
body::-webkit-scrollbar-thumb {
  background: #dadada;
  border-radius: 6px;
}

/* ======================================
   PRINT FRIENDLY
   ====================================== */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-bg, header, footer { display: none !important; }
}
