/* CSS 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #F3F7FB;
  color: #212530;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(.4,0,.2,1);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}

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

:root {
  --primary: #18539C;
  --secondary: #24B6DE;
  --accent: #F3F7FB;
  --gold: #C8AA6E;
  --gold-dark: #9E8951;
  --dark: #212530;
  --light: #fff;
  --muted: #F6F5F1;
  --border: #E7E5D8;
  --box-shadow: 0 4px 20px 0 rgba(24,83,156,0.05), 0 1.5px 4px 0 rgba(200,170,110,0.12);

  --radius-base: 16px;
  --radius-large: 28px;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--accent);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin-bottom: 18px;
  text-shadow: 0 1px 1.5px rgba(24,83,156,0.03);
}
h1 { font-size: 2.375rem; line-height: 1.2; }
h2 { font-size: 1.625rem; line-height: 1.24; margin-bottom: 18px;}
h3 { font-size: 1.125rem; font-weight: 600; color: var(--dark); margin-bottom: 12px;}
h4, h5, h6 {
  color: var(--primary);
}
p, ul, ol, blockquote {
  font-size: 1rem;
  margin-bottom: 18px;
}
strong { font-weight: 600; }

a { color: var(--primary); transition: color 0.25s cubic-bezier(.4,0,.2,1);}
a:hover,
a:focus { color: var(--gold); }

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* FLEX SPACING & ALIGNMENT RULES */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}  
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { 
  margin-bottom: 20px;
  border-radius: var(--radius-base);
  box-shadow: var(--box-shadow);
  background: var(--light);
  padding: 28px;
  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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: 0 6px 32px rgba(24,83,156,0.09);
  padding: 24px 32px;
  margin-bottom: 24px;
  border-left: 4px solid var(--gold);
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* GENERIC CARD ELEMENTS */
.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature, .service, .service-detail {
  background: var(--light);
  border-radius: var(--radius-base);
  box-shadow: var(--box-shadow);
  padding: 24px 20px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid var(--border);
  transition: box-shadow 0.23s, border-color 0.23s;
}
.feature:hover,
.service:hover,
.service-detail:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 32px rgba(200,170,110,0.14);
  z-index: 1;
}

/* TABLES: PRICING */
.pricing-table {
  width: 100%;
  background: var(--light);
  border-radius: var(--radius-base);
  box-shadow: var(--box-shadow);
  margin-bottom: 24px;
  overflow-x: auto;
  border: 1px solid var(--border);
}
.pricing-table th {
  background: var(--primary);
  color: var(--light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}
.pricing-table td {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--dark);
}
.pricing-table tr:nth-child(even){
  background: var(--accent);
}

/* SPECIAL SECTIONS */
.hero {
  background: var(--primary);
  color: var(--light);
  padding: 56px 0 48px 0;
  background-image: none;
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  box-shadow: 0 6px 32px 0 rgba(24,83,156, 0.08);
  position: relative;
  margin-bottom: 44px;
}
.hero h1, .hero h2, .hero h3 {
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(24,83,156,0.16);
}
.hero p {
  color: #f7f4ea;
  font-weight: 500;
  font-size: 1.2rem;
}

/* BUTTONS & CTAS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg,var(--gold), var(--gold-dark));
  color: var(--dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 9999px;
  padding: 14px 36px;
  box-shadow: 0 3px 24px 0 rgba(200,170,110,0.16);
  cursor: pointer;
  transition: background 0.19s, color 0.14s, box-shadow 0.22s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--primary);
  box-shadow: 0 8px 28px 0 rgba(200,170,110,0.25);
}

button {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 999px;
  outline: none;
  border: none;
  padding: 12px 28px;
  transition: color 0.14s, background 0.17s, box-shadow 0.23s;
  background: var(--secondary);
  color: var(--light);
}
button:hover, button:focus {
  background: var(--primary);
  color: var(--gold);
}

/* NAVIGATION (Desktop + Mobile) */
header {
  background: var(--light);
  box-shadow: 0 2px 16px 0 rgba(24,83,156, 0.04);
  border-bottom: 1.5px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 22;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 20px;
  min-height: 68px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 0px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.23s, color 0.19s;
}
header nav a:hover, header nav a:focus {
  border-bottom: 2px solid var(--gold);
  color: var(--gold-dark);
}
header .cta-btn {
  margin-left: 18px;
  margin-right: 6px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 28px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  line-height: 1;
  cursor: pointer;
  transition: color 0.19s;
  margin-left: 15px;
  margin-right: 0;
  z-index: 31;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--gold);
}

/* MOBILE NAVIGATION MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: rgba(34,39,56,0.98);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100vw;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.79,.14,.15,.86);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 26px;
  z-index: 110;
  font-size: 2.2rem;
  background: none;
  color: var(--gold);
  border: none;
  box-shadow: none;
  padding: 0 12px;
}
.mobile-nav {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: center;
}
.mobile-nav a {
  color: var(--light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  padding: 12px 0;
  border-bottom: 2.5px solid transparent;
  width: 80vw;
  text-align: center;
  border-radius: 6px;
  transition: background 0.19s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(200,170,110,0.11);
  color: var(--gold);
}

/* FOOTER */
footer {
  background: var(--dark);
  color: var(--gold);
  border-top: 2.5px solid var(--gold-dark);
  padding: 42px 0 26px 0;
  margin-top: 34px;
  font-size: 1rem;
}
footer .container {
  gap: 30px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: var(--gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.91;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
}
.footer-contact {
  margin: 20px 0;
  color: var(--light);
  font-size: 0.99rem;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-right: 5px;
}
.footer-copyright {
  margin: 7px 0 0 0;
  color: #bda87d;
  font-size: 0.98rem;
  opacity: 0.86;
}

/* TESTIMONIALS SECTION */
.testimonial-card {
  box-shadow: 0 8px 26px rgba(24,83,156, 0.11), 0 1.5px 4px 0 rgba(200,170,110,0.07);
  background: #fff;
  border-left: 4px solid var(--gold);
  color: #232629;
  font-size: 1.08rem;
  max-width: 720px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #232629;
  margin-bottom: 10px;
  line-height: 1.48;
}
.testimonial-card cite {
  color: var(--primary);
  font-style: normal;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.testimonial-card .testimonial-rating img {
  height: 22px;
  width: 22px;
  filter: brightness(1.2) contrast(1.08) sepia(0.8) saturate(2.8) hue-rotate(-26deg);
  margin-right: 2px;
}

/* CONTACT-INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--accent);
  border-radius: var(--radius-base);
  padding: 24px 20px;
  font-size: 1.05rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 24px 0 rgba(24,83,156, 0.06);
}
.contact-info strong {
  margin-right: 8px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.contact-info img {
  height: 18px; width: 18px; vertical-align: middle;
  margin-right: 5px;
}

/* QUICK CONTACT + HOURS */
.quick-contact, .opening-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  color: var(--secondary);
}
.quick-contact img, .opening-hours img {
  height: 22px; width: 22px;
}

/* SPECIAL LISTS */
.benefits-list {
  margin: 18px 0 18px 20px;
  padding-left: 20px;
  list-style-type: disc;
  color: var(--primary);
}
.benefits-list li {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1.03rem;
}
.service-comparison ul {
  list-style-type: disc;
  margin-left: 22px;
  color: var(--primary);
}
.service-comparison li {
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 1rem;
}

/* TEXT SECTIONS */
.text-section {
  background: #fff;
  padding: 18px 16px;
  border-radius: var(--radius-base);
  margin-bottom: 18px;
  font-size: 1.08rem;
  color: var(--dark);
  box-shadow: 0 1.5px 8px 0 rgba(24,83,156, 0.06);
  border: 1px solid var(--border);
}

/* ANIMATIONS */
.cta-btn, button, .service, .feature, .card, .testimonial-card {
  transition: background 0.19s cubic-bezier(.4,0,.2,1),
    box-shadow 0.22s cubic-bezier(.4,0,.2,1),
    border-color 0.19s cubic-bezier(.4,0,.2,1),
    color 0.18s cubic-bezier(.4,0,.2,1),
    transform 0.16s cubic-bezier(.4,0,.2,1);
}
.cta-btn:active, button:active,
.service:active, .feature:active, .card:active, .testimonial-card:active {
  transform: scale(.98);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(34, 39, 56, 0.98);
  color: var(--light);
  z-index: 101;
  padding: 26px 16px 26px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  box-shadow: 0 -3px 24px 0 rgba(24,83,156,0.13);
  font-size: 1rem;
  animation: cookieBannerFadeIn 0.65s cubic-bezier(.44,0,.31,1) both;
}
@keyframes cookieBannerFadeIn {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  color: var(--light);
  text-align: center;
  margin-bottom: 8px;
  font-size: 1rem;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  min-width: 110px;
  transition: background 0.19s, color 0.18s;
  font-size: 1rem;
  border-radius: 9999px;
  padding: 12px 24px;
  border: none;
  box-shadow: 0 1.5px 6px rgba(200,170,110,0.13);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--gold-dark);
  color: var(--light);
}
.cookie-banner .settings-btn {
  background: none;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.cookie-banner .settings-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Cookie modal popup */
.cookie-modal {
  position: fixed;
  z-index: 200;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24, 22, 17, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  animation: cookieModalFadeIn 0.46s cubic-bezier(.44,0,.31,1) both;
}
@keyframes cookieModalFadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal-content {
  background: var(--light);
  color: var(--dark);
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius-base);
  box-shadow: 0 10px 38px 0 rgba(24,83,156,0.08);
  padding: 36px 32px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal-content h3 {
  color: var(--gold-dark);
  font-size: 1.36rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--dark);
}
.cookie-category input[type="checkbox"] {
  width: 19px; height: 19px;
  accent-color: var(--gold);
  border-radius: 6px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category .always-on {
  font-size: 0.98rem;
  color: var(--primary);
  font-weight: 600;
  margin-left: 11px;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 16px;
  background: none;
  color: var(--primary);
  border: none;
  font-size: 1.85rem;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 202;
}
.cookie-modal-close:hover {
  color: var(--gold-dark);
}

/******** RESPONSIVE DESIGN ********/
@media (max-width: 1100px) {
  .hero { padding-left: 0; padding-right: 0; }
  .card-container, .feature-grid, .service-grid {
    gap: 24px;
  }
  .container { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 860px) {
  .container { max-width: 96vw; padding: 0 8px; }
  .feature, .service, .service-detail {
    min-width: 160px;
    flex: 1 1 160px;
  }
}
@media (max-width: 768px) {
  .hero { padding: 34px 0 28px 0; }
  .section { padding: 28px 8px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.22rem; }
  .container, .content-wrapper { gap: 18px; }
  .feature,
  .service,
  .service-detail {
    min-width: 90vw;
    flex: 1 1 100%;
    padding: 18px 12px;
  }
  .card, .testimonial-card {
    padding: 18px 11px;
  }
  .footer-contact { font-size: 0.95rem; }
  .content-grid,
  .feature-grid,
  .service-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header nav {
    display: none;
  }
}
@media (max-width: 600px) {
  .hero { padding: 22px 0 16px 0; }
  h1 {
    font-size: 1.25rem;
  }
  .footer-copyright {
    font-size: 0.9rem;
  }
  .footer-contact {
    font-size: 0.93rem;
  }
}

/* UTILITIES */
.muted {
  color: #81808f;
  font-size: 0.97rem;
}
.text-center { text-align: center; }
.text-right { text-align: right; }

/******** HELPER CLASSES FOR FLEXBOX SPACING (DO NOT REMOVE) *********/
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/********* ACCESSIBILITY **********/
:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  z-index: 90;
}

/******* END OF STYLE.CSS *******/
