/* RESET & BASE TYPOGRAPHY ---------------------- */
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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: #fff;
  color: #23272D;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: #00517A; text-decoration: none; transition: color 0.18s; }
a:hover, a:focus { color: #A4D233; outline: none; text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #0C1D29;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  line-height: 1.2;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 20px; }
h3 { font-size: 1.125rem; margin-bottom: 14px; font-weight: 600; }
h4, h5, h6 { font-weight: 500; }
strong { font-weight: 600; color: #00517A; }
em { color: #00517A; }

ul, ol {
  padding-left: 22px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}

.container {
  width: 100%;
  max-width: 1140px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* HEADER & NAVIGATION ---------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #F3F6F8;
  box-shadow: 0 2px 20px 0 rgba(44, 55, 62, 0.03);
  position: sticky;
  top: 0;
  z-index: 91;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
}
.logo img { height: 36px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #00517A;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #A4D2331A;
  color: #007cba;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  outline: none;
  background: #00517A;
  color: #fff;
  transition: background 0.16s, box-shadow 0.16s, transform 0.16s;
  box-shadow: 0 2px 8px 0 rgba(44,55,62,0.06);
  margin-left: 18px;
  text-align: center;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #003957;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 16px 0 rgba(44,55,62,0.09);
}
.btn-secondary {
  background: #A4D233;
  color: #0C1D29;
  margin-left: 0;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #7eb80c;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #00517A;
  cursor: pointer;
  margin-left: 18px;
  padding: 2px 8px;
  transition: background 0.14s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #A4D2331A;
  border-radius: 4px;
}

/* MOBILE MENU ---------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(44,55,62,0.13);
  z-index: 110;
  transform: translateX(-105%);
  transition: transform 0.34s cubic-bezier(.77,.01,.18,1.02);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.25rem;
  color: #00517A;
  margin: 18px 22px 0 0;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #A4D233;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 45px;
  margin-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 500;
  color: #0C1D29;
  padding: 8px 0;
  transition: color 0.18s, padding-left 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A4D233;
  padding-left: 8px;
}

/* HERO SECTION ---------------------- */
.hero {
  background: #F3F6F8;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 16px 0 rgba(44,55,62,0.024);
  padding: 0;
  margin-bottom: 60px;
}
.hero .container {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
}
.hero h1 {
  color: #00517A;
  font-size: 2.5rem;
  margin-bottom: 14px;
  text-align: center;
}
.hero p {
  font-size: 1.12rem;
  color: #23272D;
  margin-bottom: 25px;
  text-align: center;
}
.hero .btn-primary { margin: 0 auto; margin-top: 2px; }

/* SECTIONS & LAYOUTS ---------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features {
  background: #fff;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(44, 55, 62, 0.04);
  padding: 40px 12px;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 1.07rem;
  color: #0C1D29;
}
.features li {
  padding-left: 0;
  position: relative;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.core-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}
.core-values-grid > div {
  background: #F3F6F8;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(44,55,62,0.03);
  padding: 18px 24px;
  min-width: 175px;
  flex: 1 1 130px;
}
.reliability-promise {
  margin-top: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #00517A;
}

.section .text-section, .map-snippet.text-section {
  background: #F3F6F8;
  border-radius: 10px;
  padding: 20px 18px;
  font-size: 1.02rem;
  margin-bottom: 5px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* TABLES ---------------------- */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  color: #0C1D29;
  margin-bottom: 18px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(44,55,62,0.04);
  font-size: 1rem;
}
th, td {
  padding: 14px 14px;
  text-align: left;
  border-bottom: 1px solid #F3F6F8;
}
th { background: #f8fafb; font-family: 'Montserrat', Arial, sans-serif; }
tr:last-child td { border-bottom: none; }

/* PRICING CARDS / SERVICE LISTS ---------------------- */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 34px;
}
.service-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F3F6F8;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(44,55,62,0.03);
  padding: 20px 18px;
  font-size: 1.04rem;
  min-width: 220px;
}
.service-list img {
  margin-bottom: 3px;
  width: 32px;
  height: 32px;
}
.service-list strong {
  color: #00517A;
}
.service-list span {
  color: #23272D;
  font-size: 0.99rem;
}
.prices-overview h2 {
  margin-bottom: 6px;
}

/* CARD CONTAINER ---------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(44,55,62,0.04);
  margin-bottom: 20px;
  padding: 24px 22px;
  position: relative;
  flex: 1 1 300px;
  transition: box-shadow 0.21s, transform 0.21s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 36px 0 rgba(44,55,62,0.10);
  transform: translateY(-4px) scale(1.012);
}

/* TESTIMONIALS ---------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F6F8;
  color: #16202A;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(44,55,62,0.04);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  max-width: 720px;
}
.testimonial-card p {
  font-size: 1.045rem;
  color: #16202A;
  margin-bottom: 8px;
}
.testimonial-card div strong {
  color: #00517A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

/* FAQ ---------------------- */
.faq-list h2 {
  font-size: 1.15rem;
  color: #00517A;
  margin-bottom: 6px;
}
.faq-list p {
  margin-bottom: 16px;
  color: #23272D;
}

/* FOOTER ---------------------- */
footer {
  background: #fff;
  border-top: 1px solid #F3F6F8;
  padding: 32px 0 18px 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a { color: #44575F; transition: color 0.16s; }
.footer-nav a:hover, .footer-nav a:focus { color: #A4D233; }
.footer-logo { margin: 12px 0; }
.footer-logo img { height: 40px; }
.footer-copy { color: #AAB5BE; font-size: 0.97rem; }

/* COOKIE CONSENT BANNER & MODAL ---------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 140;
  background: rgba(255,255,255,0.99);
  border-top: 1.5px solid #F3F6F8;
  box-shadow: 0 -2px 12px rgba(44,55,62,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 8vw 20px 8vw;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: fadeInCookie 0.55s cubic-bezier(.52,.09,.45,1) 0.2s both;
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  color: #23272D;
  flex: 1 1 auto;
  min-width: 0;
}
.cookie-banner__buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  padding: 10px 22px;
  font-size: 1rem;
  margin: 0;
}
.cookie-banner .btn-tertiary {
  background: #fff;
  color: #00517A;
  border: 1px solid #00517A;
  border-radius: 6px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s, border-color 0.13s;
  cursor: pointer;
}
.cookie-banner .btn-tertiary:hover,
.cookie-banner .btn-tertiary:focus {
  background: #A4D2331A;
  color: #156891;
  border-color: #A4D233;
}

.cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) scale(0.98);
  min-width: 340px;
  max-width: 96vw;
  z-index: 151;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(44,55,62,0.16);
  padding: 32px 36px 26px 36px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23272D;
  animation: modalAppear 0.37s cubic-bezier(.6,.15,.21,1.1) both;
}
@keyframes modalAppear {
  from { opacity: 0; transform: translate(-50%,-32%) scale(0.91); }
  to   { opacity: 1; transform: translate(-50%,-60%) scale(0.98); }
}
.cookie-modal.open { display: block; }
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.44rem;
  color: #00517A;
  margin-bottom: 16px;
  font-weight: 600;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #0C1D29;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  padding: 10px 21px;
  font-size: 1rem;
  margin: 0 3px 0 0;
}
.cookie-modal .btn-tertiary { margin-right: 0; }
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 21px;
  font-size: 2rem;
  color: #00517A;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #A4D233;
}

/* INPUTS, FORMS, ETC. --------------- */
input[type="checkbox"],
input[type="radio"] {
  accent-color: #00517A;
  width: 18px;
  height: 18px;
}

/* SPACING, FLEXBOX HELPERS ----------- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* COVERAGE/COMPARISON ICON LISTS ---- */
.coverage ul,
.comparison ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.04rem;
}
.coverage ul img {
  vertical-align: middle;
  margin-right: 11px;
  height: 32px;
  width: 32px;
}

/* RESPONSIVE DESIGN ----------------------- */
@media (max-width: 1060px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .main-nav, .btn-primary { font-size: 0.93rem; }
  .core-values-grid { gap: 20px; }
  .core-values-grid > div { padding: 15px 13px; }
  .hero h1 { font-size: 2rem; }
}
@media (max-width: 790px) {
  .content-wrapper { gap: 19px; }
  .hero .container { padding-top: 34px; padding-bottom: 28px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .btn-primary { margin-left: 10px; }
  .mobile-menu-toggle { display: inline-block; }
  .hero .container { padding-top: 24px; padding-bottom: 18px; }
  .section, .features { padding: 27px 5px; }
  .testimonial-card { padding: 13px 10px; }
  footer .container { gap: 5px; }
  .footer-logo img { height: 32px; }
}
@media (max-width: 670px) {
  body { font-size: 15px; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1.03rem; }
  .service-list li { padding: 10px 6px; }
  .core-values-grid { flex-direction: column; gap: 14px; }
  .core-values-grid > div { min-width: unset; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px 4vw 18px 4vw; gap: 18px; }
  .cookie-modal { padding: 20px 10px 18px 16px; min-width: unset; }
}
@media (max-width: 520px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .section, .features { padding: 13px 2px; margin-bottom: 30px; }
  .hero { border-radius: 0 0 18px 18px; }
}
@media (max-width: 479px) {
  h1, h2 { font-size: 1.1rem; }
  .footer-nav { gap: 10px; font-size: 0.91rem; }
  .testimonial-card { flex-direction: column; gap: 9px; padding: 9px 3px; }
}

/* Text-Image & Flex Layouts ------------------ */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 22px; }
}

/* ANIMATIONS/MICRO-INTERACTIONS ------------- */
.btn-primary,
.btn-secondary,
.btn-tertiary,
.main-nav a,
.mobile-nav a,
.mobile-menu-toggle {
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.15s;
}
.card, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.16s;
}
.card:active, .testimonial-card:active {
  transform: scale(0.991);
  box-shadow: 0 1px 4px 0 rgba(44,55,62,0.09);
}

/* MISC: HIDE OUTLINE ON MOUSE, SHOW ON TAB --- */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #A4D233;
  outline-offset: 2px;
}

/* UTILITIES: HIDE/SHOW, WRAP, ETC. ----------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* OVERRIDES --------------------------------- */
body.no-scroll {
  overflow: hidden !important;
}
section {
  padding: 10px 0;
}
/* END OF ROADGUARDIAN MINIMALIST BRAND CSS */