/* 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: #F5F7FA;
  color: #153A5B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #153A5B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus-visible {
  outline: 2px solid #3A86B9;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}
button 
{
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background: none;
}

/* TYPOGRAPHY SCALE */
h1 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #153A5B;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.01em;
  color: #153A5B;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #153A5B;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-weight: 600;
}
p, li, blockquote, address, time {
  font-size: 1rem;
  color: #1e3244;
  margin-bottom: 12px;
}
blockquote {
  font-family: 'Merriweather', serif;
  font-weight: 400;
  font-style: italic;
  background: #EDF2F7;
  border-left: 4px solid #3A86B9;
  padding: 16px 24px;
  margin: 0 0 16px 0;
}

/* LAYOUT CONTAINERS AND FLEXBOX */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width: 769px) {
  .section {
    padding: 60px 32px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(21,58,91,0.10), 0 1.5px 6px rgba(21,58,91,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1.5px solid #EDF2F7;
  min-width: 260px;
  max-width: 100%;
  transition: box-shadow .2s, border-color .2s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(21,58,91,0.18);
  border-color: #3A86B9;
  z-index: 1;
}
.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,
  .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 5px solid #3A86B9;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(21,58,91,0.10);
  margin-bottom: 24px;
  max-width: 700px;
  color: #153A5B;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  padding: 0;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(21,58,91,0.08);
  border-bottom: 2px solid #EDF2F7;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  height: 46px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #153A5B;
  padding: 8px 4px;
  border-radius: 4px 0 4px 0;
  transition: background .15s, color .15s;
}
header nav a:hover {
  background: #EDF2F7;
  color: #3A86B9;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px 0 8px 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  min-width: 180px;
  transition: background .18s, color .18s, box-shadow .18s;
  border: none;
  box-shadow: 0 2px 8px rgba(21,58,91,0.07);
  letter-spacing: 0.05em;
  outline: none;
}
.btn-primary {
  background: #153A5B;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #3A86B9;
  color: #fff;
  box-shadow: 0 4px 18px rgba(58,134,185,0.13);
}
.btn-secondary {
  background: #F5F7FA;
  color: #153A5B;
  border: 2px solid #3A86B9;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #3A86B9;
  color: #fff;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1202;
  background: #3A86B9;
  color: #fff;
  border-radius: 8px 0 8px 0;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  border: none;
  box-shadow: 0 2px 8px rgba(21,58,91,0.09);
}
@media (max-width: 991px) {
  header nav, header .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  z-index: 1201;
  box-shadow: 0 6px 32px rgba(21,58,91,0.18);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.43,0.19,0.23,0.95);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  overscroll-behavior: contain;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  margin: 22px 24px 10px 0;
  background: none;
  color: #153A5B;
  border: none;
  border-radius: 8px 0 8px 0;
  width: 42px;
  height: 42px;
  transition: background 0.12s;
}
.mobile-menu-close:hover {
  background: #EDF2F7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 5px;
  padding: 10px 30px;
}
.mobile-nav a {
  display: block;
  font-size: 1.25rem;
  color: #153A5B;
  font-weight: 600;
  padding: 16px 0;
  width: 100%;
  border-bottom: 1px solid #EDF2F7;
  background: none;
  border-radius: 0;
  transition: background .15s, color .15s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EDF2F7;
  color: #3A86B9;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #F5F7FA 72%, #3A86B9 100%);
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 600px;
}
.hero h1 {
  font-size: 2.7rem;
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
}
.hero p {
  font-size: 1.12rem;
  color: #385573;
}

/* CTA (CALL TO ACTION) SECTION */
.cta {
  background: #153A5B;
  color: #fff;
  border-radius: 24px 0 24px 0;
  margin-bottom: 40px;
}
.cta h2 {
  color: #fff;
}
.cta .btn-primary {
  margin-top: 18px;
  background: #fff;
  color: #153A5B;
  border: 2px solid #fff;
}
.cta .btn-primary:hover {
  background: #3A86B9;
  color: #fff;
  border-color: #3A86B9;
}

/* FEATURES GRID / CARDS */
.feature-grid, .service-card-grid, .benefit-grid, .highlight-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div,
.service-card, .benefit-grid > div, .highlight-grid > div, .team-grid > div {
  flex: 1 1 260px;
  min-width: 260px;
  background: #fff;
  border-radius: 12px 0 12px 0;
  box-shadow: 0 2px 10px rgba(21,58,91,0.08);
  padding: 20px 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
  align-items: flex-start;
  border: 1.2px solid #EDF2F7;
  transition: box-shadow .18s, border-color .18s;
}
.feature-grid > div:hover, .service-card:hover, .benefit-grid > div:hover, .highlight-grid > div:hover, .team-grid > div:hover {
  box-shadow: 0 6px 20px rgba(58,134,185,0.11);
  border-color: #3A86B9;
  z-index: 1;
}
.feature-grid img, .service-card img, .benefit-grid img, .highlight-grid img, .team-grid img {
  height: 38px;
  width: 38px;
}

/* TEAM GRID */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .feature-grid, .service-card-grid, .benefit-grid, .highlight-grid, .team-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* SPECIALIZED TILES & TAGS */
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.expertise-tags span {
  background: #EDF2F7;
  color: #153A5B;
  border-radius: 8px 0 8px 0;
  padding: 6px 14px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* SUCCESS MESSAGE */
.success-message {
  background: #fff;
  border-radius: 18px 0 18px 0;
  box-shadow: 0 3px 16px rgba(21,58,91,0.10);
  padding: 32px 28px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-accordion > div {
  background: #f9fafb;
  border-radius: 10px 0 10px 0;
  box-shadow: 0 1.5px 6px rgba(21,58,91,0.05);
  margin-bottom: 0;
}
.faq-accordion button {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: #EDF2F7;
  color: #153A5B;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  border-radius: 10px 0 0 0;
  transition: background 0.15s;
}
.faq-accordion button:hover, .faq-accordion button:focus {
  background: #3A86B9;
  color: #fff;
}
.faq-accordion > div > div {
  padding: 12px 18px 18px 18px;
  color: #1e3244;
  display: none;
  border-radius: 0 0 10px 0;
  font-size: 0.98rem;
  background: #f5f7fa;
}
.faq-accordion > div.open > div {
  display: block;
  animation: faq-in 0.19s cubic-bezier(.69,.01,1,.61);
}
@keyframes faq-in { from { opacity:0; transform:translateY(-10px);} to{opacity:1;transform:translateY(0);} }

/* DOWNLOAD BUTTON (DISABLED) */
ul li button[disabled] {
  background: #a3b4c9;
  color: #fff;
  border-radius: 6px 0 6px 0;
  padding: 4px 14px;
  margin-left: 10px;
  font-size: 0.96rem;
  cursor: not-allowed;
  opacity: 0.7;
  border: none;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 2px solid #EDF2F7;
  margin-top: 60px;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
}
footer nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #385573;
}
footer nav a {
  color: #3A86B9;
  font-weight: 500;
  padding: 0 7px;
}
footer nav a:hover { color: #153A5B; }
footer p { color: #385573; font-size: 0.96rem; }

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .container { padding-left: 12px; padding-right: 12px; }
  .section { padding: 24px 4px; }
}

/* MICRO-INTERACTIONS */
a, .btn-primary, .btn-secondary, button, .mobile-menu-close {
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 1500;
  background: #fff;
  box-shadow: 0 -4px 32px rgba(21,58,91,0.13),0 -2px 6px rgba(21,58,91,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 14px;
  padding: 20px 24px 20px 24px;
  font-size: 1rem;
  color: #153A5B;
  border-radius: 18px 18px 0 0;
  opacity: 1;
  transform: translateY(0);
  transition: transform .35s cubic-bezier(.83,-0.04,.25,.93), opacity .22s;
}
.cookie-banner.hide {
  opacity: 0; transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-banner .btn-consent {
  padding: 8px 20px;
  border-radius: 8px 0 8px 0;
  font-weight: 600;
  border: none;
  font-size: 1rem;
  background: #3A86B9;
  color: #fff;
  transition: background .14s;
}
.cookie-banner .btn-consent:hover,
.cookie-banner .btn-consent:focus {
  background: #153A5B;
}
.cookie-banner .btn-secondary {
  background: #F5F7FA;
  color: #153A5B;
  border: 2px solid #3A86B9;
}
.cookie-banner .btn-secondary:hover { background: #153A5B; color: #fff; }

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 280px;
  max-width: 420px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(21,58,91,0.13), 0 2px 12px rgba(21,58,91,0.08);
  z-index: 1530;
  border-radius: 20px 0 20px 0;
  transform: translate(-50%,-50%) scale(1);
  opacity: 1;
  transition: opacity 0.23s, transform 0.23s;
  padding: 30px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal.hide {
  opacity: 0;
  transform: translate(-50%,-40%) scale(.94);
  pointer-events: none;
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #153A5B;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #3A86B9;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  transition: background .12s;
}
.cookie-modal-close:hover {
  background: #EDF2F7;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #153A5B;
}
.cookie-category input[type="checkbox"] {
  accent-color: #3A86B9;
  width: 20px;
  height: 20px;
  margin-right: 2px;
}
.cookie-modal-description {
  font-size: .98rem;
  color: #385573;
}
.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}

/* ESSENTIAL COOKIES ALWAYS ENABLED */
.cookie-category input[disabled] + label {
  font-style: italic;
  color: #a3b4c9;
}

/* GEOMETRIC STRUCTURED DECORATIVE SHAPES */
.card, .service-card, .testimonial-card, .feature-grid > div, .team-grid > div, .highlight-grid > div, .success-message {
  position: relative;
}
.card:before, .service-card:before, .team-grid > div:before, .testimonial-card:before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 28px; height: 28px;
  border-radius: 6px 0 16px 0;
  background: #EDF2F7;
  z-index: 0;
  opacity: 0.8;
  pointer-events: none;
}
.card:after, .service-card:after, .team-grid > div:after, .testimonial-card:after {
  content: '';
  position: absolute;
  bottom: -10px; left: -16px;
  width: 16px; height: 34px;
  background: #3A86B9;
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0% 80%);
  border-radius: 0 0 14px 0;
  z-index: 0;
  opacity: 0.07;
  pointer-events: none;
}
.service-card:before, .service-card:after { opacity: 0.6; }

/* SPACING (FORCED BETWEEN CARDS & SECTIONS) */
.features, .feature-grid, .service-card-grid, .benefit-grid, .team-grid, .highlight-grid {
  margin-bottom: 24px;
}
.feature-grid > div:not(:last-child),
.service-card:not(:last-child),
.benefit-grid > div:not(:last-child),
.team-grid > div:not(:last-child),
.highlight-grid > div:not(:last-child) {
  margin-right: 0;
  margin-bottom: 0;
}
.section, .card-container, .content-grid, .testimonials {
  margin-bottom: 60px;
}
.card, .service-card, .testimonial-card {
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .card, .service-card, .testimonial-card {
    padding: 16px;
    font-size: 0.98rem;
  }
}

/* ACCESSIBILITY: FOCUS HIGHLIGHT */
.btn-primary:focus-visible, .btn-secondary:focus-visible, .btn-consent:focus-visible, .mobile-menu-close:focus-visible {
  outline: 2px solid #3A86B9;
  outline-offset: 2px;
}

/* REMOVE TAP HIGHLIGHT ON MOBILE */
@media (pointer: coarse) {
  a, button, .btn-primary, .btn-secondary {
    -webkit-tap-highlight-color: rgba(58,134,185,0.15);
  }
}

/* Hide cookies modal on backdrop click (add backdrop special class as needed in JS) */
.cookie-backdrop {
  position: fixed;
  left: 0;right: 0;top: 0;bottom:0;
  background: rgba(21,58,91,0.28);
  z-index: 1525;
  opacity: 1;
  transition: opacity .2s;
}
.cookie-backdrop.hide { opacity: 0; pointer-events: none; }

/* Extra: Utility Classes */
.text-center { text-align: center !important; }
.align-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.w-100 { width: 100% !important; }

/* --- END OF STYLE.CSS --- */