/* 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, 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 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #1B2A3A;
  background: linear-gradient(135deg, #fafdff 0%, #eaeff5 100%);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #267AD4;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1B2A3A;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #e0e6ed;
}
th {
  background: #f5f9ff;
  font-weight: 700;
}

/* BRAND COLOR VARIABLES */
:root {
  --primary: #1B2A3A;
  --secondary: #267AD4;
  --accent: #FFD600;
  --gradient-1: #329cff;
  --gradient-2: #267AD4;
  --gradient-3: #e7f0fc;
  --background: #fafdff;
  --card-shadow: 0 2px 16px rgba(38,122,212,0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

/* GENERAL LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  background: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.5rem;
}
h4, h5, h6 {
  font-size: 1.2rem;
}
p {
  font-size: 1.1rem;
  color: #26384e;
  margin: 0 0 16px 0;
}
strong {
  font-weight: 700;
}

/* BUTTONS & LINKS */
.cta, .cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  transition: background 0.25s, color 0.2s, box-shadow 0.25s, transform 0.15s;
  box-shadow: 0 2px 12px 0 rgba(38,122,212,0.08);
  cursor: pointer;
  text-align: center;
  padding: 0.7em 2.2em;
  min-width: 160px;
  text-decoration: none;
}
.cta {
  color: #fff;
  background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
  box-shadow: 0 2px 18px 0 rgba(38,122,212,0.17);
}
.cta-link {
  color: var(--secondary);
  background: #fff;
  border: 2px solid var(--secondary);
  padding: 0.7em 2em;
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, var(--secondary), var(--gradient-1));
  box-shadow: 0 4px 24px rgba(38,122,212,0.30);
  transform: translateY(-2px) scale(1.03);
  color: #fff;
}
.cta-link:hover, .cta-link:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(38,122,212,0.21);
}
button {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: linear-gradient(90deg, var(--secondary) 0%, #53b1fd 100%);
  box-shadow: 0 2px 10px 0 rgba(38,122,212,0.05);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 80px;
  gap: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
header nav a {
  color: #fafdff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  padding: 9px 6px;
  border-radius: 5px;
  transition: background 0.18s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: rgba(255,255,255,0.10);
  color: var(--accent);
}
header nav a.cta {
  background: var(--accent);
  color: var(--primary);
  margin-left: 10px;
  border-radius: var(--radius-sm);
  padding: 9px 18px;
  transition: background 0.15s, color 0.2s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #fff3b3;
  color: var(--secondary);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #fff;
  background: none;
  border: none;
  padding: 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(39,122,212,0.10);
  color: var(--accent);
}

/* MOBILE BURGER NAV */
.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fafdff;
  box-shadow: 0 0 60px 0 rgba(36,76,110,.1);
  transform: translateX(-110%);
  transition: transform 0.36s cubic-bezier(.77,.22,.37,1.04), opacity 0.21s;
  opacity: 0.98;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: var(--secondary);
  background: none;
  border: none;
  margin: 22px 22px 2px 0;
  padding: 2px 11px;
  border-radius: 11px;
  transition: background 0.18s;
}
.mobile-menu-close:hover {
  background: rgba(38,122,212,.11);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 32px 32px 32px;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  padding: 11px 6px;
  border-radius: var(--radius-sm);
  margin-right: 0;
  font-weight: 600;
  transition: background 0.16s, color 0.15s;
  min-width: 220px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gradient-3);
  color: var(--secondary);
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(95deg, var(--secondary) 0%, #53b1fd 100%);
  color: #fff;
  padding: 54px 0 48px 0;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 26px;
}
.hero h1 {
  color: #fff;
  font-size: 2.7rem;
  letter-spacing: -1.2px;
  line-height: 1.18;
  margin-bottom: 16px;
}
.hero p {
  color: #e5f2fd;
  font-size: 1.21rem;
  margin-bottom: 22px;
}
.hero .cta {
  margin-top: 2px;
  font-size: 1.13rem;
}

/* TESTIMONIALS & CARDS */
.testimonials-preview, .testimonial-card, .review-summary {
  width: 100%;
}
.testimonials-preview .testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  padding: 20px 30px 18px 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  border-left: 5px solid var(--secondary);
  color: var(--primary);
}
.testimonial-card blockquote {
  border: none;
  padding: 0;
  font-style: italic;
  color: #1B2A3A;
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 6px;
  background: none;
}
.testimonial-card div {
  font-size: 0.99rem;
  color: var(--secondary);
  font-weight: 600;
}
.review-summary {
  margin: 22px 0 16px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--gradient-3);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

/* VISUAL CARDS (Generic) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* FLEX SECTIONS */
.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 {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CTA BANNER */
.cta-banner {
  width: 100%;
  background: linear-gradient(94deg,var(--secondary),#53b1fd);
  color: #fff;
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  padding: 40px 0;
}
.cta-banner .container {
  align-items: center;
}
.cta-banner .content-wrapper {
  align-items: center;
}
.cta-banner h2 {
  color: #fff;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #eceff4;
  padding: 44px 0 12px 0;
  width: 100%;
  margin-top: 38px;
}
.footer-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 52px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  width: 100%;
}
.footer-content a {
  color: var(--accent);
  font-weight: 500;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-bottom: 6px;
}
.footer-content nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}
.footer-note {
  margin-top: 10px;
  font-size: 0.92rem;
  color: #95a6bb;
}
@media (max-width: 850px) {
  .footer-content {
    flex-direction: column;
    gap: 26px;
  }
}

/* LISTS + ICONS */
ul li,
ol li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--primary);
}
ul li img,
ol li img {
  width: 28px;
  height: 28px;
  margin-right: 4px;
}
dt {
  font-weight: 600;
  margin-top: 20px;
}
dd {
  margin-left: 0;
  margin-bottom: 10px;
}

/* CONTACT SECTION */
.contact .content-wrapper {
  gap: 26px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-3);
  padding: 19px 18px;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--primary);
}

/* TABLE (PRICING PAGE) */
table {
  margin: 18px 0 30px 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
tr:last-child td {
  border-bottom: none;
}
td, th {
  font-size: 1rem;
}

/* EMERGENCY/INFO BLOCKS */
.emergency-info {
  background: #fff9d6;
  color: #b08700;
  border-radius: var(--radius-sm);
  padding: 15px 20px;
  margin: 10px 0 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 0 7px rgba(255,214,0, 0.06);
}
.opening-hours {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--primary);
}

/* COMMON UTILITIES */
.text-section a {
  text-decoration: underline;
  color: var(--secondary);
}
.text-section a:hover {
  color: var(--primary);
}

/* SPACING ENFORCEMENT */
section, .section, .card, .testimonial-card, .content-wrapper > * {
  margin-bottom: 20px;
}
section:last-child, .section:last-child {
  margin-bottom: 0;
}
main > section {
  margin-bottom: 40px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1000px) {
  .container {
    max-width: 96vw;
  }
  .footer-content {
    gap: 22px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .section, .cta-banner {
    padding: 28px 7px 28px 7px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 4px;
  }
  .section, .cta-banner {
    padding: 18px 4px 18px 4px;
    margin-bottom: 26px;
  }
  .footer-content {
    gap: 10px;
  }
  .testimonials-preview .testimonial-card {
    padding: 13px 8px 11px 12px;
  }
}

/* HOVER EFFECTS & MICRO-INTERACTIONS */
.card, .testimonial-card, .cta, .cta-link, .map-location {
  transition: box-shadow 0.22s, background 0.23s, transform 0.20s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 28px 0 rgba(38,122,212,0.10);
  transform: translateY(-1.5px) scale(1.01);
}
.cta:active, .cta-link:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2050;
  width: 100vw;
  background: #fffdf4;
  color: #1B2A3A;
  box-shadow: 0 -4px 32px 0 rgba(38,122,212,0.07);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  padding: 24px 32px;
  font-size: 1rem;
  border-top: 2px solid #FFD600;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .32s, transform .31s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(160%);
  pointer-events: none;
}
.cookie-banner__message {
  flex: 2;
  font-size: 1rem;
  color: var(--primary);
}
.cookie-banner__actions {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  padding: 7px 22px;
  margin-left: 0;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.14s, color 0.14s, box-shadow 0.12s;
}
.cookie-accept {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(38,122,212,0.08);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--primary);
  color: #FFD600;
}
.cookie-reject {
  background: #edf6ff;
  color: var(--primary);
  border: 1px solid #e0e6ed;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #FFD600;
  color: #1B2A3A;
}
.cookie-settings {
  background: #FFD600;
  color: #1B2A3A;
  border: 1px solid #FFD600;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #fffbe1;
}
@media (max-width: 768px) {
  .cookie-banner {
    padding: 15px 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
    flex-direction: row;
    gap: 12px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2120;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,42,58,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .3s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 64px rgba(27,42,58,0.19);
  padding: 36px 34px 30px 34px;
  min-width: 320px;
  max-width: 95vw;
  width: 410px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  animation: cookieModalAppear 0.45s cubic-bezier(.47,1.64,.41,.75);
}
@keyframes cookieModalAppear {
  0% { opacity: 0; transform: scale(0.93) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.33rem;
  margin-bottom: 14px;
  color: var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 22px;
  width: 100%;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 18px;
  background: #e6ebf1;
  position: relative;
  display: inline-block;
  margin-left: 12px;
  transition: background .18s;
  cursor: pointer;
}
.cookie-toggle input[type=checkbox] {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  bottom: 2px; right: 2px;
  background: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  transition: left .18s, background .15s;
}
.cookie-toggle input[type=checkbox]:checked + .cookie-toggle-slider {
  left: 16px;
  background: var(--secondary);
}
.essential-cookie label {
  color: #95a6bb;
  font-weight: 500;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 7px 26px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.cookie-modal-accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal-accept:hover {
  background: var(--primary);
  color: var(--accent);
}
.cookie-modal-cancel {
  background: #e6ebf1;
  color: var(--primary);
}
.cookie-modal-cancel:hover {
  background: #FFD600;
  color: #1B2A3A;
}
.cookie-modal-close {
  position: absolute;
  right: 12px; top: 8px;
  font-size: 1.4rem;
  color: #95a6bb;
  background: none;
  border: none;
  border-radius: 5px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal-close:hover {
  background: #f5f9ff;
  color: var(--accent);
}
@media (max-width: 530px) {
  .cookie-modal {
    min-width: 99vw;
    padding: 16px 5vw;
    border-radius: var(--radius-sm);
  }
}
/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/*--- END OF MAIN STYLES ---*/

/* Load Google Fonts in HTML head (Montserrat, Open Sans) as per brand guidelines -- CSS assumes fonts are loaded */
