/* === CSS RESET & BASE === */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #14345C;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #10A29B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #10A29B;
  outline-offset: 2px;
}
strong, b {
  font-weight: 700;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
}
button {
  font-family: inherit;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #14345C;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #14345C;
}

/* === CONTAINERS AND SECTION SPACING === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* === HEADER === */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(20,52,92,0.05);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}
.brand-logo img {
  height: 36px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  padding: 5px 0;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #14345C;
  font-size: 1rem;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #10A29B;
}
.btn-primary {
  background: #10A29B;
  color: #fff;
  border-radius: 28px;
  padding: 10px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(16,162,155,0.07);
  transition: background 0.22s, box-shadow 0.2s, color 0.18s;
  text-align: center;
  text-decoration: none;
  outline: none;
  min-width: 140px;
  display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #14345C;
  color: #fff;
  box-shadow: 0 4px 16px rgba(16,162,155,0.11);
}
.btn-secondary {
  background: #E9F6FC;
  color: #14345C;
  border-radius: 28px;
  padding: 10px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: 1px solid #10A29B;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(20,52,92,0.05);
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  outline: none;
  min-width: 140px;
  display: inline-block;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #10A29B;
  color: #fff;
  border-color: #10A29B;
  box-shadow: 0 4px 16px rgba(20,52,92,0.09);
}

/* === MOBILE NAV === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #14345C;
  cursor: pointer;
  padding: 8px;
  margin-left: 14px;
  z-index: 102;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #10A29B;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,52,92, 0.97);
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(.55,0,.1,1), opacity 0.28s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  margin: 22px 0 18px 24px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  z-index: 104;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  outline: 2px solid #10A29B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  padding: 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  transition: color 0.18s;
  text-align: left;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #10A29B;
  background: rgba(233,246,252,0.05);
}

/* === HERO AND SECTION LAYOUTS === */
.hero {
  background: #E9F6FC;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 4px 18px rgba(16,162,155,0.04);
  margin-bottom: 48px;
  padding: 48px 0 60px 0;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: #14345C;
}

/* === FLEX UTILITIES (MANDATORY CLASSES) === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(20,52,92,0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 240px;
  flex: 1 1 320px;
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(20,52,92,0.08);
  margin-bottom: 24px;
  color: #14345C;
  min-width: 240px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
}
.testimonial-card span {
  color: #10A29B;
  font-size: 0.94rem;
  font-weight: 600;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === FEATURE GRIDS/INDUSTRY GRIDS/SERVICE LISTS === */
.feature-grid, .industry-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: center;
}
.feature, .industry, .service {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(20,52,92,0.06);
  padding: 28px 16px 22px 16px;
  margin-bottom: 20px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.21s;
}
.feature:hover,
.industry:hover,
.service:hover {
  box-shadow: 0 8px 28px rgba(20,52,92,0.11);
  transform: translateY(-2px) scale(1.01);
}
.feature img, .industry img, .service img {
  margin-bottom: 12px;
  height: 36px;
  width: auto;
  filter: grayscale(0.5) brightness(1);
}

/* === SPECIAL CARDS & HIGHLIGHTS === */
.case-highlight, .case-study-snippet {
  background: #E9F6FC;
  color: #14345C;
  padding: 18px 26px;
  border-radius: 10px;
  font-size: 0.98rem;
  box-shadow: 0 2px 10px rgba(16,162,155,0.02);
  margin-bottom: 24px;
  margin-top: 14px;
}

/* === SOLUTION/RESOURCE/LIST STYLES === */
.solution-categories ul, .resource-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 12px 0;
  list-style: none;
  padding: 0;
}
.solution-categories li, .resource-categories li {
  background: #E9F6FC;
  color: #14345C;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 0.96rem;
  font-weight: 500;
}
.featured-articles, .news-list, .downloadable-resources {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.featured-articles article, .news-list article, .downloadable-resources > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(20,52,92,0.04);
  padding: 20px 18px;
  flex: 1 1 340px;
  min-width: 240px;
  margin-bottom: 20px;
}

/***** FAQ ACCORDION AND TEXT SECTIONS *****/
.faq-accordion ul {
  padding: 0;
}
.faq-accordion li {
  margin-bottom: 14px;
  padding: 18px 20px;
  border-radius: 10px;
  background: #F9FBFC;
  color: #14345C;
}
.faq-accordion li p {
  margin-bottom: 0;
  margin-top: 6px;
}

.map-embed {
  background: #E9F6FC;
  padding: 14px 20px;
  border-radius: 10px;
  margin: 14px 0 0 0;
  font-size: 0.98rem;
}

/***** CONTACT INFO + NEWSLETTER *****/
.contact-info ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact ul li,
.contact-info ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.footer-contact ul img,
.contact-info ul img {
  width: 24px;
  height: 24px;
}
.newsletter-signup {
  background: #E9F6FC;
  padding: 18px 24px;
  border-radius: 12px;
  margin-top: 22px;
  text-align: center;
}

/***** FOOTER *****/
footer {
  background: #fff;
  border-top: 1px solid #e6e6e6;
  margin-top: 48px;
  box-shadow: 0 -2px 16px rgba(20,52,92,0.04);
  padding: 32px 0 20px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 200px;
}
.footer-brand img {
  height: 38px;
  width: auto;
}
.footer-brand span {
  color: #14345C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 120px;
}
.footer-links a {
  color: #10A29B;
  font-size: 0.98rem;
  transition: color 0.16s;
}
.footer-links a:hover,
.footer-links a:focus {
  color: #14345C;
}
.footer-contact {
  flex: 1 1 160px;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a img {
  width: 26px;
  height: 26px;
  filter: grayscale(0.3) brightness(1.2);
  transition: filter 0.14s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: grayscale(0) brightness(1.1) drop-shadow(0 2px 6px #10A29B80);
}

/* === COOKIE CONSENT BANNER AND MODAL === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #14345C;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  box-shadow: 0 -4px 24px rgba(20,52,92, 0.16);
  gap: 24px;
  font-size: 1rem;
  transition: transform 0.25s, opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-message {
  flex: 1 1 270px;
  margin-right: 24px;
}
.cookie-banner .cookie-btn {
  border-radius: 22px;
  border: none;
  font-size: 1rem;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 8px;
  cursor: pointer;
  transition: background 0.19s, color 0.17s;
}
.cookie-banner .accept {
  background: #10A29B;
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #10887e;
}
.cookie-banner .reject {
  background: #fff;
  color: #14345C;
  border: 1px solid #10A29B;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #E9F6FC;
  color: #10A29B;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  color: #10A29B;
  border-color: #10A29B;
  background: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(20,52,92,0.48);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  visibility: visible;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #14345C;
  border-radius: 18px;
  max-width: 480px;
  width: 92vw;
  padding: 38px 28px 24px 28px;
  box-shadow: 0 8px 40px rgba(20,52,92,0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookie-modal-in 0.37s cubic-bezier(.67,.33,.12,1.05);
}
@keyframes cookie-modal-in {
  from {transform: translateY(60px) scale(0.93); opacity:0;}
  to {transform: none; opacity:1;}
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #14345C;
  cursor: pointer;
  z-index: 10010;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.cookie-category .cookie-toggle {
  accent-color: #10A29B;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.cookie-category .always-on {
  font-size: 0.96rem;
  color: #109195;
  margin-left: 8px;
}
.cookie-modal-footer {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-footer .cookie-btn {
  min-width: 100px;
}

/* === TRANSITIONS & MICRO-INTERACTIONS === */
a, button, .btn-primary, .btn-secondary, .feature, .service, .industry {
  transition: color 0.21s, background 0.23s, box-shadow 0.22s, transform 0.16s;
}

/* === RESPONSIVE DESIGN (MOBILE-FIRST) === */
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .main-nav {
    gap: 18px;
  }
  .footer-links {
    gap: 3px;
  }
  .footer-social {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .btn-primary {
    display: none;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-brand {
    margin-bottom: 6px;
  }
}
@media (max-width: 760px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .hero {
    padding: 28px 0 30px 0;
    border-radius: 0 0 14px 14px;
  }
  .section {
    margin-bottom: 36px;
    padding: 22px 6px;
  }
  .feature-grid, .industry-grid, .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .industry, .service, .card {
    min-width: 0;
    width: 100%;
  }
  .newsletter-signup, .case-highlight, .case-study-snippet, .testimonial-card {
    padding: 12px 10px;
    font-size: 0.98rem;
  }
  .testimonial-card {
    padding: 16px 10px;
  }
  .footer-contact ul,
  .contact-info ul {
    gap: 7px;
  }
  .resource-categories ul, .solution-categories ul {
    flex-direction: column;
    gap: 6px;
    margin-left: 0;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.12rem;
  }
  .footer-brand img {
    height: 26px;
  }
  .btn-primary,
  .btn-secondary {
    min-width: 90px;
    padding: 8px 16px;
    font-size: 0.98rem;
  }
  .footer-links,
  .footer-contact {
    font-size: 0.96rem;
  }
  .testimonial-card {
    font-size: 0.93rem;
    gap: 10px;
    padding: 11px 6px;
  }
  .newsletter-signup {
    font-size: 0.96rem;
    padding: 6px 2px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* === TABLES, FORMS, & GENERIC ELEMENTS === */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 22px;
}
th, td {
  border: 1px solid #E9F6FC;
  padding: 10px 12px;
  text-align: left;
}

input, textarea, select {
  border: 1px solid #E9F6FC;
  border-radius: 8px;
  padding: 11px 15px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FAFCFD;
  color: #14345C;
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #10A29B;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #14345C;
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}

/* === HELPER CLASSES === */
.d-none { display: none!important; }
.hide { display:none!important; }
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-2 { margin-top: 16px!important; }
.mb-2 { margin-bottom: 16px!important; }
.gap-0 { gap: 0!important; }
.gap-1 { gap: 8px!important; }
.gap-2 { gap: 16px!important; }

/* === REMOVE GRID PROPERTIES (per requirements) === */
/* No display: grid, grid-template, grid-area, columns, column-* anywhere */

/* END CSS */
