/* RESET & BASE STYLES */
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-size: 100%; font: inherit; vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-color: #F5F8FB;
  color: #242943;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #3899c7;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover, a:focus {
  color: #11284B;
  text-decoration: underline;
}
ul, ol {
  margin-left: 22px;
  padding-left: 0;
}
li {
  margin-bottom: 8px;
}
strong { font-weight: 700; }

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #11284B;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  line-height: 1.18;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #2879ac;
}
.section h2 {
  background: none;
  padding: 0;
}
p, .text-section, .terms-text, .confirmation-message {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #26394d;
}

@media (min-width: 600px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.25rem; }
  p, .text-section { font-size: 1.08rem; }
}

/* CONTAINER & WRAPPERS */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}
.content-wrapper {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(99,144,189,0.08);
  padding: 32px 16px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .content-wrapper {
    padding: 40px 32px;
  }
}

/* LAYOUT SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(120deg,#F5F8FB 0%, #e8f4fa 100%);
  border-radius: 24px;
}
@media (min-width: 768px) {
  .section {
    padding: 56px 0;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(40,121,172,0.09);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F8FB;
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: 0 1px 8px 0 rgba(56,153,199,0.10);
  flex-direction: column;
  transition: box-shadow 0.2s cubic-bezier(0.7,0.13,0.26,0.97);
}
.testimonial-card p {
  color: #18314b; /* readable dark text for reviews */
}
.testimonial-card span {
  color: #2879ac;
  font-size: 0.98em;
  font-style: italic;
  align-self: flex-end;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 rgba(40,121,172,0.16);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE, BRAND & SERVICE GRIDS */
.feature-grid, .service-grid, .brand-grid, .icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div, .service-grid > div, .brand-grid > div {
  background: #fcfdff;
  border-radius: 13px;
  box-shadow: 0 1px 6px 0 rgba(49,166,209,0.07);
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 340px;
  padding: 20px 16px 22px 16px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s;
}
.feature-grid img, .service-grid img, .brand-grid img, .icon-grid img {
  height: 46px;
  width: auto;
  margin-bottom: 6px;
}
.feature-grid > div:hover, .service-grid > div:hover, .brand-grid > div:hover {
  box-shadow: 0 4px 18px 0 rgba(49,166,209,0.10);
}

.icon-grid {
  gap: 28px;
  margin-top: 16px;
}
.icon-grid img {
  background: #eaf3fa;
  border-radius: 50%;
  padding: 10px;
  height: 40px;
  transition: background 0.25s;
}
.icon-grid img:hover {
  background: #d6eaf7;
}

/* CALLTOACTION BUTTONS */
.cta-btn {
  display: inline-block;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.06em;
  color: #fff;
  background: linear-gradient(90deg, #63cbe9 0%, #86e0a6 100%);
  background-color: #31A6D1;
  border-radius: 31px;
  border: 0;
  padding: 13px 36px;
  margin-top: 14px;
  box-shadow: 0 2px 10px 0 rgba(49,166,209,0.13);
  letter-spacing: 0.05em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, transform 0.18s;
  outline: none;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2879ac;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px 0 rgba(49,166,209,0.18);
  text-decoration: none;
}

/* HEADER */
header {
  background: #e1f1fa;
  padding: 0 0 0 0;
  box-shadow: 0 2px 12px 0 rgba(49,166,209,.04);
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 12px;
  min-height: 60px;
  gap: 10px;
}
.main-nav {
  display: flex;
  gap: 18px;
  font-size: 1.05em;
  align-items: center;
}
.main-nav a {
  color: #2179ad;
  border-radius: 18px;
  padding: 7px 17px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  color: #fff;
  background: #31A6D1;
  text-decoration: none;
}
.cta-btn {
  margin-left: 8px;
}
@media (max-width: 900px) {
  header .container {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
  }
  .main-nav { justify-content: flex-start; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  position: fixed;
  z-index: 1200;
  top: 18px;
  right: 18px;
  background: #fff;
  color: #2179ad;
  border: none;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(49,166,209,0.05);
  font-size: 2rem;
  cursor: pointer;
  outline: none;
  transition: background 0.18s;
  display: flex;
}
@media (min-width: 769px) {
  .mobile-menu-toggle { display: none; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(220,242,252,0.98);
  z-index: 1500;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  padding-top: 58px;
  opacity: 1;
  pointer-events: none;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 12px; right: 18px;
  background: #fff;
  color: #2879ac;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px 0 rgba(49,166,209,0.08);
  cursor: pointer;
  z-index: 1700;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.17em;
  background: none;
  padding: 10px 18px;
  border-radius: 16px;
  color: #11284B;
  font-family: 'Roboto Slab', Georgia, serif;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #63cbe9;
  color: #fff;
  text-decoration: none;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg,#e2ecfa 0%,#f6fafd 100%);
  padding: 44px 0 15px 0;
  color: #14426a;
  font-size: 1rem;
  box-shadow: 0 -3px 16px 0 rgba(56,153,199,0.05);
  margin-top: 36px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin: 20px 0 0 0;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #2179ad;
  font-size: 1em;
  border-radius: 10px;
  padding: 5px 13px;
  transition: background 0.18s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a.active {
  color: #fff;
  background: #31A6D1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 0.98em;
}
.footer-contact img {
  width: 17px;
  vertical-align: middle;
  margin-right: 7px;
  opacity: 0.93;
}
.footer-credits {
  margin-top: 12px;
  font-size: 0.95em;
  color: #8db2cb;
}
@media (min-width: 769px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-contact { flex: 2; }
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 900px) {
  .feature-grid, .service-grid, .brand-grid {
    gap: 18px;
  }
}
@media (max-width: 650px) {
  .feature-grid > div, .service-grid > div, .brand-grid > div {
    min-width: 100%;
    margin-bottom: 16px;
  }
  .content-wrapper { padding: 20px 7px; }
}
@media (max-width: 480px) {
  .content-grid, .feature-grid, .service-grid, .brand-grid {
    flex-direction: column;
    gap: 12px;
  }
  .section { padding: 24px 4px; }
  .testimonial-card { padding: 13px 7px; }
  .footer-contact span { font-size: 0.96em;}
}

/* FLEX DESKTOP ROWS */
@media (min-width: 768px) {
  .content-grid, .feature-grid, .service-grid, .brand-grid, .icon-grid {
    flex-direction: row;
  }
  .text-image-section {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .service-grid, .brand-grid, .icon-grid {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* SPECIAL COMPONENTS */
.coverage-map {
  background: #e8f4fa;
  border-radius: 14px;
  padding: 22px 14px;
  margin: 14px 0 0 0;
  color: #14426a;
  font-weight: 600;
  box-shadow: 0 1px 7px 0 rgba(49,166,209,0.05);
}
.callout {
  background: #d9f5ec;
  border-left: 5px solid #31A6D1;
  padding: 17px 16px;
  color: #20796c;
  border-radius: 13px;
  margin: 14px 0 0 0;
  font-weight: 600;
  font-size: 1.07em;
}
.confirmation-message, .next-steps {
  background: #eafaf5;
  border-radius: 13px;
  padding: 18px 13px;
  margin-bottom: 13px;
  color: #184652;
  font-size: 1.06em;
}
.next-steps ul { margin: 0 0 0 12px; }

/* FAQ STYLES */
.faq-list li { margin-bottom: 17px;}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fdf9fa;
  color: #1d3655;
  box-shadow: 0 -3px 28px 0 rgba(49,166,209,0.10);
  z-index: 10100;
  padding: 26px  20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  transition: transform .35s cubic-bezier(.38,-0.18,.9,.37);
  border-radius: 18px 18px 0 0;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-btn-settings {
  background: #31A6D1;
  color: #fff;
  border: none;
  font-size: 1.05em;
  font-family: 'Roboto Slab', Georgia, serif;
  border-radius: 44px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.17s;
  box-shadow: 0 2px 10px 0 rgba(49,166,209,0.09);
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #2179ad;
  color: #fff;
}
.cookie-btn.reject {
  background: #e494b2;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #c37083;
}
.cookie-btn-settings {
  background: #fff;
  color: #31A6D1;
  border: 1.3px solid #31A6D1;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #e4f6fd;
  color: #11284B;
  border-color: #2179ad;
}

.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(0.95);
  background: #fff;
  color: #14426a;
  z-index: 10500;
  border-radius: 18px;
  width: 96%;
  max-width: 440px;
  padding: 32px 18px 23px 18px;
  box-shadow: 0 2px 40px 0 rgba(49,166,209,0.13);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  font-size: 1.07em;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  margin-bottom: 13px;
  color: #1d3655;
}
.cookie-modal button.close-cookie-modal {
  position: absolute;
  top: 12px; right: 13px;
  font-size: 1.5em;
  background: #31A6D1;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 3px 10px 0 10px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal button.close-cookie-modal:hover {
  background: #2179ad;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 17px;
  font-size: 1.01em;
}
.cookie-switch {
  appearance: none;
  width: 38px; height: 21px;
  background: #e0e8f9;
  border-radius: 12px;
  cursor: pointer;
  outline: none;
  position: relative;
  transition: background 0.19s;
}
.cookie-switch:checked {
  background: #31A6D1;
}
.cookie-switch::before {
  content: '';
  display: block;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  box-shadow: 0 1px 5px 0 rgba(49,166,209,0.09);
  transition: left 0.15s;
}
.cookie-switch:checked::before {
  left: 19px;
}
.category-desc { font-size: 0.97em; color: #4288ac; margin-left: 3px; }
.cookie-category .required {
  color: #fff;
  background: #92eeb0;
  border-radius: 7px;
  padding: 1.5px 6px;
  margin-left: 5px;
  font-size: 0.85em;
}

/* MISC */
::-webkit-scrollbar { width: 9px; background: #e6f6fb; }
::-webkit-scrollbar-thumb { background: #d5f2fa; border-radius: 10px; }

/* ANIMATION HELPERS */
.fade-in {
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-in-left {
  animation: slideInLeft 0.35s cubic-bezier(0.38,-0.18,0.9,0.37);
}
@keyframes slideInLeft {
  from { transform: translateX(-100vw); }
  to { transform: translateX(0); }
}

/* COLORFUL PASTEL BACKGROUND DECORATIVE ELEMENTS - OPTIONAL */
body::before {
  content: '';
  position: fixed;
  z-index: -1;
  left: -90px; top: -90px;
  width: 310px; height: 310px;
  background: radial-gradient(ellipse at top left,#ffe0ef 18%,#e0faff 92%);
  opacity: 0.23;
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  z-index: -1;
  right: -90px; bottom: -100px;
  width: 260px; height: 220px;
  background: radial-gradient(ellipse at bottom right,#ffeab8 18%,#e9f5fe 92%);
  opacity: 0.19;
  pointer-events: none;
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 2px solid #ffc7e0;
  outline-offset: 2px;
}

/* BRAND COLOR OVERRIDES FOR DESIGN HIERARCHY */
.primary-text { color: #11284B; }
.secondary-text { color: #31A6D1; }
.accent-bg { background: #F5F8FB; }

/* Ensure adequate margin for all content cards */
.content-wrapper + .content-wrapper, .feature-grid > div + div, 
.service-grid > div + div, .brand-grid > div + div, .testimonial-card + .testimonial-card {
  margin-left: 0;
  margin-top: 18px;
}

/* Card highlight interaction effect */
.card, .feature-grid > div, .service-grid > div, .brand-grid > div {
  transition: box-shadow 0.16s, transform 0.13s;
}
.card:hover, .feature-grid > div:hover, .service-grid > div:hover, .brand-grid > div:hover {
  box-shadow: 0 5px 28px 0 rgba(49,166,209,0.13);
  transform: translateY(-4px) scale(1.012);
}

/* Utility spacing classes for override */
.mt-32 { margin-top: 32px!important; }
.mb-32 { margin-bottom: 32px!important; }
.mt-48 { margin-top: 48px!important; }
.mb-48 { margin-bottom: 48px!important; }
.gap-16 { gap: 16px!important; }

/* END OF STYLES */
