/* ---- CSS RESET & BASE ---- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1B2A41;
  background: #FAFBFC;
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin: 0 0 1em 1.5em;
  padding: 0;
}
dl, p {
  margin: 0 0 1em 0;
}
figure {
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #1B2A41;
  margin: 0 0 20px 0;
}
h1 { font-size: 2.75rem; line-height: 1.1; }
h2 { font-size: 2rem; line-height: 1.17; }
h3 { font-size: 1.35rem; line-height: 1.2; }
@media (max-width: 500px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
}
a {
  color: #36A3A7;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2D16B;
}
strong, b {
  font-weight: 800;
}
button, .btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  background: #36A3A7;
  color: #1B2A41;
  padding: 13px 36px;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 16px 0 rgba(27,42,65,0.08);
  cursor: pointer;
  display: inline-block;
  margin: 12px 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.23s, transform 0.18s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #F2D16B;
  color: #1B2A41;
  box-shadow: 0 4px 32px 0 rgba(27,42,65,0.18);
  transform: translateY(-2px) scale(1.025);
}
/* Util branding accent */
.accent {
  color: #F2D16B;
}
/* ---- BRAND CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1220px;
  padding: 0 18px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* ---- HEADER ---- */
header {
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(27,42,65,0.06);
  z-index: 20;
  position: relative;
}
.main-nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 28px;
  padding: 14px 0;
}
.main-nav img {
  height: 46px;
  margin-right: 18px;
}
.main-nav a {
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 7px 5px;
  border-radius: 5px;
  transition: background 0.18s, color 0.16s;
}
.main-nav .btn-primary {
  margin-left: 16px;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F2D16B;
  color: #1B2A41;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: #36A3A7;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 13px 9px 13px;
  margin-right: 6px;
  margin-top: 8px;
  cursor: pointer;
  z-index: 31;
  transition: background 0.2s, color 0.23s, box-shadow 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F2D16B;
  color: #1B2A41;
  box-shadow: 0 4px 12px 0 rgba(54,163,167,0.08);
}
/* ---- MOBILE NAV ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  background: rgba(27,42,65,0.97);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0 0 0 0;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.69,.08,.12,1), opacity 0.23s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  margin: 18px 22px 0 0;
  padding: 10px 21px 10px 10px;
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
  align-self: flex-end;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F2D16B;
  background: rgba(54,163,167,0.09);
  border-radius: 7px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 38px 0 0 0;
  padding-left: 0;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  width: 100%;
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 18px 38px 18px 29px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.19s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F2D16B;
  color: #1B2A41;
}
@media (max-width: 1100px) {
  .main-nav a:not(:first-child):not(.btn-primary) { font-size: 0.97rem; }
}
@media (max-width: 900px) {
  .main-nav {
    font-size: 0.95rem;
    gap: 0 17px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    gap: 0 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 18px;
    top: 11px;
  }
}
/* ---- SECTION / BLOCK PATTERNS ---- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 650px) {
  .section { padding: 22px 8px; margin-bottom: 36px; }
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0;
}
.text-section {
  padding: 0 0 0 0;
  gap: 18px;
  display: flex;
  flex-direction: column;
}
.text-section ul, .text-section ol {
  margin-bottom: 1.3em;
}
/* ---- FLEXBOX LAYOUTS ---- */
.card-container,
.card-grid,
.feature-grid,
.service-grid,
.content-grid,
.industries-served ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
  justify-content: flex-start;
}
.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(54,163,167, 0.07);
  margin-bottom: 20px;
  padding: 24px 22px 20px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 240px;
  transition: box-shadow 0.24s, transform 0.22s;
}
.card:hover,
.feature-item:hover,
.service-item:hover {
  box-shadow: 0 8px 36px 0 rgba(54,163,167,0.18);
  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;
}
@media (max-width: 768px) {
  .text-image-section,
  .feature-grid,
  .card-container,
  .service-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.feature-grid,
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.feature-item,
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(54,163,167,0.08);
  gap: 15px;
  padding: 24px 20px 20px 20px;
  min-width: 230px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.feature-item img, .service-item img {
  width: 48px;
  height: 48px;
}
.industries-served ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
}
.industries-served li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #F2D16B;
  color: #1B2A41;
  padding: 6px 18px;
  border-radius: 15px;
  font-size: 1.01rem;
  list-style: none;
}
.usp-numbers {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.usp-numbers span {
  background: #36A3A7;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 16px;
  padding: 14px 24px;
  margin-right: 8px;
  font-size: 1.02rem;
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .usp-numbers {
    gap: 12px;
    flex-direction: column;
  }
  .usp-numbers span {
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
}
/* ---- HERO ---- */
.hero {
  background: #1B2A41;
  color: #fff;
  width: 100%;
  padding: 62px 0 52px 0;
  min-height: 270px;
  display: flex;
}
.hero h1, .hero h2, .hero .subheadline {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero .subheadline {
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
}
.hero .btn-primary {
  background: #F2D16B;
  color: #1B2A41;
}
.hero .btn-primary:hover {
  background: #36A3A7;
  color: #fff;
}
@media (max-width: 600px) {
  .hero { padding: 33px 0 25px 0; }
}
/* ---- TESTIMONIAL CARDS ---- */
.testimonial-card {
  background: #fff;
  border-left: 7px solid #F2D16B;
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 rgba(54,163,167,0.10);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-top: 28px;
  margin-bottom: 20px;
  max-width: 740px;
  font-size: 1.06rem;
  transition: box-shadow 0.17s;
}
.testimonial-card p {
  color: #1B2A41;
  margin: 0 0 4px 0;
  font-weight: 600;
}
.testimonial-footer {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #36A3A7;
  font-size: 0.97rem;
  font-weight: 700;
  margin-left: 12px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px 0 rgba(54,163,167,0.19);
}
/* ---- FOOTER ---- */
footer {
  background: #1B2A41;
  color: #fff;
  padding: 42px 0 0 0;
  font-size: 1rem;
  margin-top: 80px;
}
.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 42px;
  align-items: flex-start;
  padding: 0 0 26px 0;
  border-bottom: 2px solid #F2D16B;
}
.footer-wrapper img {
  height: 44px;
  margin-right: 24px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1px;
  border-radius: 8px;
  transition: color 0.18s, background 0.19s;
  padding: 7px 12px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #1B2A41;
  background: #F2D16B;
}
.footer-contact {
  font-size: 0.99rem;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 7px;
  height: 18px;
  width: 18px;
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 21px 0 15px 0;
  font-size: 0.93rem;
  color: #F2D16B;
}
@media (max-width: 960px) {
  .footer-wrapper {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 14px;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 9px 15px;
  }
}
@media (max-width: 700px) {
  .footer-wrapper {
    flex-direction: column;
    padding-bottom: 6px;
    gap: 9px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 6px;
  }
}
/* ---- CONTACT DETAILS ---- */
.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: #1B2A41;
  background: #F7F9FC;
  border-radius: 13px;
  padding: 8px 17px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.01rem;
}
.contact-details img {
  height: 23px;
  width: 23px;
}
@media (max-width: 480px) {
  .contact-details li { font-size: 0.96rem; padding: 7px 11px; }
}
/* ---- SPECIAL BUTTON STATES + ANIMATIONS ---- */
.btn-primary:active { transform: scale(0.98); }
button:focus-visible, a:focus-visible {
  outline: 2px dashed #36A3A7;
  outline-offset: 1.5px;
}
/* ---- COOKIE CONSENT BANNER ---- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1000;
  background: #fff;
  color: #1B2A41;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 18px 0 rgba(27,42,65,0.08);
  border-radius: 18px 18px 0 0;
  padding: 26px 38px 20px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  gap: 20px;
  pointer-events: auto;
  animation: banner-slidein 0.42s cubic-bezier(.47,1.64,.41,.8);
}
@keyframes banner-slidein {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-consent-banner button {
  padding: 9px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.02rem;
  border-radius: 18px;
  border: none;
  outline: none;
  cursor: pointer;
  background: #36A3A7;
  color: #fff;
  margin-left: 0;
  transition: background 0.15s, color 0.13s;
}
.cookie-consent-banner button.cookie-accept {
  background: #36A3A7;
  color: #fff;
}
.cookie-consent-banner button.cookie-accept:hover {
  background: #1B2A41;
  color: #F2D16B;
}
.cookie-consent-banner button.cookie-reject {
  background: #fff;
  color: #1B2A41;
  border: 2px solid #36A3A7;
}
.cookie-consent-banner button.cookie-reject:hover {
  background: #1B2A41;
  color: #fff;
}
.cookie-consent-banner button.cookie-settings {
  background: #F2D16B;
  color: #1B2A41;
}
.cookie-consent-banner button.cookie-settings:hover {
  background: #36A3A7;
  color: #fff;
}
@media (max-width: 750px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 12px 15px 12px;
    gap: 15px;
    font-size: 0.97rem;
  }
  .cookie-consent-banner .cookie-btn-group {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
}
/* ---- COOKIE MODAL ---- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: rgba(27,42,65,0.56);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  pointer-events: auto;
  animation: modal-fadein 0.31s cubic-bezier(.29,1.36,.44,.98);
}
@keyframes modal-fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  min-width: 303px;
  max-width: 430px;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 12px 70px 0 rgba(27,42,65,0.17);
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2100;
}
.cookie-modal-content h2 {
  margin-top: 0;
  color: #1B2A41;
  font-size: 1.35rem;
  font-weight: 800;
}
.cookie-preferences-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1rem;
  margin-bottom: 24px;
}
.cookie-pref-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}
.cookie-pref-row span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}
.cookie-pref-row input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: #36A3A7;
  border-radius: 5px;
}
.cookie-pref-row input[disabled] {
  opacity: 0.63;
  pointer-events: none;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 21px;
  background: none;
  border: none;
  color: #1B2A41;
  font-size: 1.35rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #36A3A7;
}
.cookie-modal-content .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 11px;
  margin-top: 7px;
  justify-content: flex-end;
}
.cookie-modal-content button {
  border-radius: 13px;
  font-size: 1rem;
}
@media (max-width: 500px) {
  .cookie-modal-content {
    min-width: 90vw; max-width: 96vw; padding: 18px 7vw 24px 7vw;
  }
}
/* ---- UTILITY CLASSES ---- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
@media (max-width: 500px) {
  .container {
    padding-left: 6px; padding-right: 6px;
  }
}
/* ---- NO FLEXBOX BREAK! CHECK ---- */
/* Every layout container uses display: flex and flex-wrap, NO grid or columns used */
/* ---- END OF CSS ---- */
