/* 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, 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;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #f7fafb;
  color: #163D57;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #31A1B7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #163D57;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

/* FONT FACES (Google Fonts recommended, fallback provided) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #163D57;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Header */
header {
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(22,61,87,0.06);
  z-index: 20;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  gap: 30px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo img {
  height: 42px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #163D57;
  letter-spacing: 0.01em;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a.cta.primary {
  background: #FFD563;
  color: #163D57;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(49,161,183,0.08);
  border: none;
}
.main-nav a.cta.primary:hover, .main-nav a.cta.primary:focus {
  background: #31A1B7;
  color: #fff;
}
.main-nav a.cta.secondary {
  background: #fff;
  border: 2px solid #31A1B7;
  color: #31A1B7;
}
.main-nav a.cta.secondary:hover, .main-nav a.cta.secondary:focus {
  background: #31A1B7;
  color: #fff;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f3f8fa;
  color: #31A1B7;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #163D57;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.14s;
  z-index: 110;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f1f6fb;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: -8px 0 32px rgba(22,61,87,0.13);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #163D57;
  cursor: pointer;
  margin: 28px 28px 0 0;
  align-self: flex-end;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.18s;
  z-index: 220;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #f1f6fb;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  gap: 0;
}
.mobile-nav a {
  width: 100%;
  padding: 18px 32px;
  font-size: 1.08rem;
  color: #163D57;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-bottom: 1px solid #f3f5f7;
  letter-spacing: 0.01em;
  transition: background 0.17s, color 0.17s;
  cursor: pointer;
  display: block;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #31A1B7;
  color: #fff;
}

/* HERO SECTION */
.hero {
  background: #163D57;
  color: #fff;
  border-radius: 0 0 48px 48px;
  margin-bottom: 60px;
  padding: 40px 0 60px 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  z-index: 3;
}
.hero h1 {
  color: #FFD563;
}
.hero p {
  color: #fff;
  font-size: 1.24rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero .cta.primary {
  margin-top: 12px;
}

/* SECTIONS SPACING */
.section,
.features,
.about,
.services,
.testimonials,
.contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section:last-child,
.features:last-child,
.about:last-child,
.services:last-child,
.contact:last-child,
.testimonials:last-child {
  margin-bottom: 0;
}

/* FLEX LAYOUTS & CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(22,61,87,0.07);
  padding: 32px 24px;
  flex: 1 1 320px;
  min-width: 290px;
  transition: box-shadow .20s, transform .14s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(49,161,183,0.14);
  transform: translateY(-3px) scale(1.025);
}
.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;
}

/* GRID-LIKE FLEX (FORBIDDEN to use grid) */
.feature-grid,
.solution-grid,
.innovation-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.feature-grid li,
.solution-grid li,
.innovation-grid li {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(49,161,183,0.10);
  flex: 1 1 260px;
  min-width: 225px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .2s, transform .13s;
}
.feature-grid li:hover,
.solution-grid li:hover,
.innovation-grid li:hover {
  box-shadow: 0 6px 40px rgba(49,161,183,0.17);
  transform: translateY(-4px) scale(1.032);
}
.feature-grid img,
.solution-grid img,
.innovation-grid img {
  height: 48px;
  margin-bottom: 10px;
}

/* Feature & Solution Typography */
.feature-grid h3,
.solution-grid h3,
.innovation-grid h3 {
  margin-bottom: 6px;
  font-size: 1.23rem;
  color: #163D57;
  font-weight: 800;
}
.feature-grid p,
.solution-grid p,
.innovation-grid p {
  font-size: 1rem;
  color: #163D57;
}

/* TESTIMONIALS */
.testimonials {
  background: #f3f6f7;
  border-radius: 35px;
}
.testimonials .content-wrapper {
  gap: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 32px 30px;
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1.5px 12px rgba(22,61,87,0.06);
  border-left: 6px solid #FFD563;
  transition: box-shadow .18s;
  min-width: 220px;
  max-width: 540px;
}
.testimonial-card p {
  font-size: 1.11rem;
  color: #163D57;
  font-weight: 500;
}
.testimonial-card span {
  color: #31A1B7;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.star-rating span {
  font-size: 1.3rem;
  color: #FFD563;
  font-weight: bold;
  margin-top: 0.35rem;
}

/* BUTTONS & CALL TO ACTION */
.cta, .cta.primary, .cta.secondary {
  padding: 14px 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 32px;
  box-shadow: 0 2px 14px rgba(49,161,183,0.13);
  transition: background 0.18s, color 0.18s, box-shadow .16s, transform .16s;
  cursor: pointer;
  outline: none;
  border: none;
  display: inline-block;
}
.cta.primary {
  background: #FFD563;
  color: #163D57;
}
.cta.primary:hover, .cta.primary:focus {
  background: #31A1B7;
  color: #fff;
  box-shadow: 0 4px 18px rgba(49,161,183,0.19);
  transform: translateY(-2px) scale(1.025);
}
.cta.secondary {
  background: #31A1B7;
  color: #fff;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #FFD563;
  color: #163D57;
}

/* FEATURE ITEMS (vertical flex) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CONTACT SECTION */
.contact ul {
  margin-bottom: 18px;
}
.contact ul li {
  font-size: 1.03rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact ul img {
  height: 22px;
  width: 22px;
}
.contact .cta.secondary {
  margin-top: 16px;
}

/* ABOUT, SERVICES, GENERAL SECTIONS */
.about ul, .services ul, .about ol, .services ol {
  margin: 0;
  margin-bottom: 24px;
  padding-left: 0;
}
.about ul li, .services ul li,
.about ol li, .services ol li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.55;
}

/* List style (geometric dot) for improved bold-modern look */
.about ul li::before, .services ul li::before, .about ol li::before, .services ol li::before {
  content: '';
  display: inline-block;
  background: #31A1B7;
  width: 8px; height: 8px;
  border-radius: 4px;
  margin-right: 13px;
  vertical-align: middle;
}

/* FOR OL NUMBERS, REMOVE DOT */
.about ol li::before, .services ol li::before {
  content: none;
}

/* FOOTER */
footer, .footer {
  background: #163D57;
  color: #fff;
  padding: 40px 0 26px 0;
  position: relative;
  margin-top: 75px;
}
footer .container, .footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 52px;
  display: flex;
  justify-content: space-between;
}
.footer-logo img {
  height: 48px;
}
.footer-links nav, .quick-links nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-links a, .quick-links a {
  color: #FFD563;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 4px 0;
  transition: color .14s;
}
.footer-links a:hover, .footer-links a:focus,
.quick-links a:hover, .quick-links a:focus {
  color: #31A1B7;
}
.footer-contact ul {
  list-style: none;
  margin-top: 10px;
}
.footer-contact li {
  margin-bottom: 9px;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}

/* COOKIE CONSENT FIXED BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1000;
  background: #163D57;
  color: #fff;
  padding: 32px 20px 20px 20px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -2px 30px rgba(22,61,87,0.17);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  transition: transform .36s cubic-bezier(.77,0,.18,1), opacity .26s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  color: #fff;
  font-size: 1.03rem;
}
.cookie-actions {
  display: flex;
  gap: 18px;
}
.cookie-actions button {
  padding: 12px 26px;
  border-radius: 28px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  background: #FFD563;
  color: #163D57;
  margin-right: 6px;
  transition: background .17s, color .17s;
}
.cookie-actions .cookie-reject {
  background: #31A1B7;
  color: #fff;
}
.cookie-actions .cookie-settings {
  background: #fff;
  color: #31A1B7;
  border: 1.6px solid #31A1B7;
}
.cookie-actions button:focus, .cookie-actions button:hover {
  background: #163D57;
  color: #FFD563;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  width: 100vw; height: 100vh;
  background: rgba(22,61,87,0.34);
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .26s;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 40px rgba(22,61,87,0.16);
  padding: 38px 30px 24px 30px;
  min-width: 330px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1801;
  animation: cookieModalFadeIn 0.37s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; transform: scale(0.97) translateY(24px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  color: #163D57;
  font-size: 1.26rem;
  font-weight: 800;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;  right: 18px;
  font-size: 1.45rem;
  color: #31A1B7;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 6px 10px;
  transition: background .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f3f8fa;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.01rem;
}
.cookie-category-label {
  font-weight: 700;
  color: #163D57;
}
.cookie-category-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: #ccc;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background .18s;
}
.cookie-toggle[aria-checked="true"] {
  background: #31A1B7;
}
.cookie-toggle-slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left .15s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-slider {
  left: 23px;
}
.cookie-category-essential {
  color: #31A1B7;
  font-weight: 800;
}

.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: .98rem;
  border-radius: 24px;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.cookie-modal-actions .cookie-accept {
  background: #FFD563;
  color: #163D57;
}
.cookie-modal-actions .cookie-reject {
  background: #31A1B7;
  color: #fff;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #163D57;
  color: #FFD563;
}

/* RESPONSIVE - MOBILE FIRST */
@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .feature-grid li, .solution-grid li, .innovation-grid li {
    min-width: 180px;
    max-width: 100%;
    padding: 20px 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .footer .container, footer .container {
    flex-direction: column;
    gap: 38px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.26rem; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .hero {
    border-radius: 0 0 24px 24px;
    padding: 28px 0 32px 0;
  }
  .feature-grid,
  .solution-grid,
  .innovation-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .solution-grid li, .innovation-grid li {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-bottom: 14px;
  }
  .testimonials .content-wrapper {
    gap: 14px;
  }
  .footer .container, footer .container {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .section, .about, .features, .testimonials, .services, .contact {
    margin-bottom: 34px;
    padding: 22px 5px;
  }
  .hero {
    padding: 16px 0 18px 0;
    border-radius: 0 0 14px 14px;
  }
  .testimonial-card {
    padding: 18px 10px;
  }
  .feature-grid li, .solution-grid li, .innovation-grid li, .card {
    padding: 14px 7px;
    border-radius: 14px;
  }
  .cookie-banner {
    padding: 18px 6px 10px 6px;
    font-size: 0.97rem;
    border-radius: 12px 12px 0 0;
  }
  .cookie-modal {
    padding: 16px 7px 14px 7px;
    min-width: 0;
    border-radius: 12px;
  }
}

/* VISUAL HIERARCHY & BOLDNESS */
.feature-grid li, .solution-grid li, .innovation-grid li, .testimonial-card, .card {
  border: 2px solid transparent;
}
.feature-grid li:hover,
.solution-grid li:hover,
.innovation-grid li:hover,
.card:hover {
  border: 2px solid #FFD563;
  background: #f8fafb;
}

/* SUBTLE GEOMETRIC ACCENTS */
.feature-grid li::after, .solution-grid li::after, .innovation-grid li::after {
  content: '';
  display: block;
  width: 48px;
  height: 8px;
  background: #FFD563;
  border-radius: 4px;
  margin-top: 16px;
  margin-bottom: 0;
}

/* ACCESSIBILITY */
:focus {
  outline: 2.5px solid #31A1B7;
  outline-offset: 2px;
}

/* Z-INDEX HIERARCHY */
header { z-index: 10; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 1000; }
.cookie-modal-overlay { z-index: 1800; }

/* NO GRID, COLUMNS, OR ABSOLUTE in card/text block layouts */
/* END MODERN_BOLD CSS */
