/* RESET & NORMALIZATION */
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;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F7F9FB;
  color: #232E38;
  line-height: 1.67;
  overscroll-behavior: none;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 16px;
  color: #232E38;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
h4,h5,h6 {
  font-size: 1.1rem;
  font-weight: 500;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
ul li,
ol li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}
a {
  color: #3788B8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #232E38;
  text-decoration: underline;
}

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEX LAYOUT CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(55,136,184,0.08);
  border-radius: 14px;
  padding: 28px 24px 24px 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(35,46,56,0.15);
  transform: translateY(-2px) scale(1.013);
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 3px 24px 0 rgba(55,136,184,0.08);
  border: 1px solid #E5E9F2;
  transition: box-shadow 0.3s, border 0.3s;
}
.testimonial-card:hover {
  border-color: #3788B8;
  box-shadow: 0 8px 32px 0 rgba(55,136,184,0.12);
}
.testimonial-meta {
  font-size: 0.97rem;
  color: #232E38;
  opacity: 0.7;
  font-style: italic;
  margin-top: 2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO + GRADIENTS */
.hero {
  width: 100%;
  padding: 60px 0 40px 0;
  background: linear-gradient(90deg,#e5e9f2 0%,#f7fafc 40%,#c9e5f8 100%);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  max-width: 660px;
}
.hero h1 {
  color: #232E38;
  font-size: 2.7rem;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.18rem;
  color: #232E38;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #3788B8 0%, #29577D 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 12px 28px;
  border-radius: 36px;
  font-weight: 700;
  border: none;
  outline: none;
  box-shadow: 0 3px 16px 0 rgba(55,136,184,0.08);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  margin-top: 10px;
  letter-spacing: 1px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #29577D 0%, #3788B8 100%);
  transform: scale(1.03) translateY(-1px);
  box-shadow: 0 8px 24px rgba(55,136,184,0.18);
  text-decoration: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E5E9F2;
  color: #232E38;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #d0dbe5;
  color: #232E38;
}

.btn-outline {
  background: transparent;
  border: 2px solid #3788B8;
  color: #3788B8;
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover, .btn-outline:focus {
  background: #3788B8;
  color: #fff;
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(55,136,184,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 16px 20px 14px 20px;
  justify-content: space-between;
}
header img {
  height: 44px; width: auto;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: #232E38;
  font-weight: 500;
  font-size: 1.02rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E5E9F2;
  color: #3788B8;
}

/* HAMBURGER + MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  outline: none;
  color: #3788B8;
  font-size: 2.1rem;
  padding: 6px 14px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border-radius: 30px;
  z-index: 1301;
}
.mobile-menu-toggle:focus {
  background: #E5E9F2;
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,46,56,0.84);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(.63,-0.14,.4,1.2);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 22px 0 0;
  font-size: 2rem;
  background: #fff;
  color: #3788B8;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #3788B8;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 46px 32px 14px 36px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.36rem;
  font-weight: 600;
  padding: 10px 4px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #3788B8;
  color: #fff;
}

/* SECTIONS & SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
section:last-child {
  margin-bottom: 0;
}
.features {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 32px 0 rgba(35,46,56,0.04);
  margin-top: -44px;
}
.features .content-wrapper {
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-grid li {
  background: linear-gradient(90deg,#f7fafc 60%,#e5e9f2 100%);
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(55,136,184,0.06);
  padding: 22px 20px 18px 20px;
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  min-height: 180px;
  transition: box-shadow 0.22s;
}
.feature-grid li img {
  height: 32px;
  margin-bottom: 7px;
}
.feature-grid li h3 {
  margin-bottom: 6px;
  font-size: 1.13rem;
  color: #3788B8;
}

.categories ul,
.services-overview ul,
.text-section ul,
.contact-details ul,
.contact-summary ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.categories ul li,
.services-overview ul li,
.text-section ul li,
.contact-details ul li,
.contact-summary ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
.categories ul li::before,
.services-overview ul li::before,
.text-section ul li::before,
.contact-details ul li::before,
.contact-summary ul li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  top: 1px;
  color: #3788B8;
  font-size: 1rem;
}

.category-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
}
.category-navigation a {
  background: #E5E9F2;
  color: #232E38;
  padding: 7px 18px;
  border-radius: 19px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.2s;
}
.category-navigation a:hover, .category-navigation a:focus {
  background: #3788B8;
  color: #fff;
}

.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.product-cards > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(55,136,184,0.07);
  padding: 16px 22px 16px 22px;
  flex: 1 1 240px;
  max-width: 270px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  border: 1.5px solid #E5E9F2;
  transition: box-shadow 0.22s, border 0.2s;
}
.product-cards > div:hover {
  border-color: #3788B8;
  box-shadow: 0 6px 30px 0 rgba(55,136,184,0.13);
}
.product-cards h3 {
  font-size: 1.08rem;
  color: #29577D;
  margin-bottom: 5px;
}

.cta {
  background: linear-gradient(94deg,#e5e9f2 55%,#c9e5f8 100%);
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 rgba(55,136,184,0.04);
}

.directions-text {
  margin-top: 12px;
}

/* FOOTER */
footer {
  background: #232E38;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 12px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 48px;
  padding: 0 20px;
  justify-content: space-between;
}
footer .footer-nav {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
footer .footer-nav a {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  border-radius: 8px;
  padding: 6px 7px;
  transition: background 0.2s, color 0.2s;
}
footer .footer-nav a:hover, footer .footer-nav a:focus {
  background: #3788B8;
  color: #fff;
}
footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
footer .footer-contact a {
  color: #E5E9F2;
  text-decoration: underline dotted;
  font-weight: 500;
}
footer .footer-contact a:hover {
  color: #fff;
}
footer .copyright {
  text-align: center;
  font-size: 0.98rem;
  color: #90A1B7;
  margin-top: 21px;
  letter-spacing: 0.2px;
}

/* TESTIMONIALS */
.testimonials .content-wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  align-items: flex-start;
}
.testimonials h2 {
  color: #29577D;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .product-cards, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .testimonials .content-wrapper {
    gap: 18px;
    padding: 0 3px;
  }
  .hero {
    padding: 36px 0 28px 0;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.36rem; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .container {
    max-width: 100vw;
    padding: 0 7px;
  }
  .feature-grid, .product-cards, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .categories, .cta, .features {
    border-radius: 11px;
  }
  section {
    margin-bottom: 38px;
    padding: 27px 0 0 0;
  }
  .testimonial-card {
    padding: 16px 13px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  footer .container {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}
@media (max-width: 500px) {
  html { font-size: 95%; }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
  .hero {
    padding: 17px 0 12px 0;
  }
  .btn-primary {
    padding: 11px 13px;
    font-size: 1rem;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(88deg,#232E38 60%, #29577D 100%);
  color: #fff;
  padding: 20px 28px 22px 28px;
  z-index: 3002;
  box-shadow: 0 -4px 18px rgba(35,46,56,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.05rem;
  transition: transform 0.32s cubic-bezier(.63,-0.14,.4,1.2), opacity 0.32s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  color: #fff;
  margin: 0;
  margin-bottom: 0 !important;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner .btn-primary {
  font-size: 1rem;
  padding: 8px 22px;
  margin: 0;
}
.cookie-banner .btn-secondary, .cookie-banner .btn-outline {
  font-size: 1rem;
  padding: 8px 16px;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 13px 9px;
    font-size: 1rem;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,46,56,0.84);
  z-index: 3004;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity 0.32s;
  opacity: 1;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #232E38;
  border-radius: 18px;
  max-width: 430px;
  width: 94vw;
  padding: 32px 26px 24px 26px;
  box-shadow: 0 6px 32px 0 rgba(35,46,56,0.14);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.15rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
  color: #29577D;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 13px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #29577D;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 6px 0 14px 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  width: 32px; height: 17px;
  background: #E5E9F2;
  border-radius: 10px;
  position: relative;
  outline: none;
  transition: background 0.2s;
  cursor: pointer;
}
.cookie-category input[type="checkbox"]:checked {
  background: #3788B8;
}
.cookie-category input[type="checkbox"]:before {
  content: '';
  display: block;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 1px; top: 1px;
  transition: left 0.2s;
}
.cookie-category input[type="checkbox"]:checked:before {
  left: 16px;
}
.cookie-category input[disabled] {
  background: #b1bdca;
  cursor: default;
}
.cookie-category-label {
  font-weight: 500;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-actions .btn-primary,
.cookie-modal-actions .btn-secondary {
  font-size: 1rem;
  padding: 8px 22px;
}

/* MISC */
.text-section {
  margin-bottom: 12px;
}
.directions-text p {
  margin-bottom: 4px;
}
.contact-details {
  margin: 18px 0 0 0;
}
.contact-details h2 {
  font-size: 1.25rem;
  color: #29577D;
  margin-bottom: 6px;
}

::-webkit-input-placeholder { color: #90a1b7; }
::-moz-placeholder { color: #90a1b7; }
:-ms-input-placeholder { color: #90a1b7; }
::placeholder { color: #90a1b7; }

/* ICONS GENERAL */
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

/* FOCUS OUTLINES */
a:focus, button:focus, input:focus, textarea:focus, .btn-primary:focus {
  outline: 2px solid #3788B8;
  outline-offset: 2px;
}

/* PRINT */
@media print {
  header, nav, footer, .mobile-menu, .cookie-banner, .cookie-modal { display:none !important; }
  .container { max-width: 100% !important; padding: 0 !important; }
  body { background: #fff !important; color: #000 !important; }
}

/* UTILS */
.u-hide { display: none !important; }
.u-flex { display: flex !important; }
.u-center { justify-content: center !important; align-items: center !important; }
.u-gap-20 { gap: 20px !important; }
