/* CSS 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,
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;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #1c1c1c;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
a {
  color: #141414;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #244674;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #101112;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  margin-top: 0;
}
h1 { font-size: 2.5rem; letter-spacing: -0.02em; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.12rem; margin-bottom: 8px; }
strong { color: #101010; font-weight: 700; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(30,33,36,0.07);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* FLEXBOX GRIDS */
.feature-grid, .benefits-grid, .tip-grid, .featured-posts, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.feature-grid > div, .benefits-grid > div, .tip-card, .featured-posts > article, .blog-list > article {
  background: #fafbfc;
  border: 1px solid #e1e1e1;
  border-radius: 16px;
  padding: 24px 20px;
  flex: 1 1 230px;
  min-width: 260px;
  box-shadow: 0 1px 4px 0 rgba(30,33,36,0.05);
  transition: box-shadow 0.2s, background 0.2s;
}
.feature-grid > div:hover, .benefits-grid > div:hover, .tip-card:hover, .featured-posts > article:hover, .blog-list article:hover {
  background: #f5f5f5;
  box-shadow: 0 6px 20px 0 rgba(40,40,40,0.08);
}
@media (max-width: 768px) {
  .feature-grid, .benefits-grid, .tip-grid, .featured-posts, .blog-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .benefits-grid > div, .tip-card, .featured-posts > article, .blog-list > article {
    min-width: 0;
    width: 100%;
    padding: 18px 12px;
  }
}

/* CARDS / HIGHLIGHTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 4px 0 rgba(60,60,60,0.08);
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 20px 0 rgba(30,33,36,.12); }
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}
.service-highlight {
  background: #f8f8fa;
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 24px 20px;
  box-shadow: 0 1px 8px 0 rgba(50,50,50,0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-highlight a {
  color: #244674;
  font-weight: 700;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e2e2;
  box-shadow: 0 2px 12px 0 rgba(30,33,36,0.08);
  margin-bottom: 20px;
  color: #232323;
}
.testimonial-card p {
  font-size: 1.07rem;
  font-style: italic;
  color: #232323;
}
.testimonial-card strong { color: #101112; font-size: 1rem; font-family: 'Montserrat',sans-serif; }

/* BUTTONS & CTAS */
.cta-btn, .cookie-consent-banner .cta-btn, .cookie-modal .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #101112;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 15px 38px;
  border-radius: 32px;
  border: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.2s;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 2px 6px rgba(36,70,116,0.08);
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #244674;
  color: #fff;
  box-shadow: 0 4px 18px rgba(36,70,116, 0.17);
  text-decoration: none;
}
.cookie-consent-banner .cta-btn {
  margin-top: 0;
  margin-right: 10px;
}

/* HEADER (DESKTOP) */
header {
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(40,40,40,0.04);
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 20px;
  position: relative;
}
header nav {
  display: flex;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-bottom 0.18s;
  font-weight: 500;
}
header nav a:hover, header nav a.active {
  color: #244674;
  border-bottom: 2px solid #244674;
  background: none;
}
header .cta-btn {
  margin-left: 24px;
}
header img {
  max-height: 45px;
  width: auto;
  margin-right: 22px;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #101112;
  cursor: pointer;
  margin-left: 18px;
  z-index: 600;
}
/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  background: rgba(248,248,248,0.986);
  box-shadow: -10px 0 40px 0 rgba(30,30,30,0.14);
  transition: transform 0.38s cubic-bezier(.4,0,.56,1);
  transform: translateX(100vw);
  z-index: 700;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  right: 0;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #101112;
  cursor: pointer;
  z-index: 999;
  padding: 8px;
  line-height: 1;
  transition: background 0.18s;
}
.mobile-menu-close:hover {
  background: rgba(36,70,116,0.08);
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 80px 0 0 0;
  padding: 0 30px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #232323;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 6px;
  transition: background 0.12s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #101112;
  color: #fff;
}
@media (max-width: 1024px) {
  header .container nav,
  header .container .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
  }
  header img {
    max-height: 38px;
    margin-right: 8px;
  }
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #EAECF2;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 20px 12px 20px;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 260px;
}
.footer-brand img {
  width: 56px;
  height: auto;
  margin-bottom: 10px;
}
.footer-brand p {
  color: #555;
  font-size: 1rem;
  line-height: 1.4;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
}
.footer-menu a {
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-menu a:hover {
  color: #244674;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 210px;
  color: #232323;
  font-size: 1rem;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  display: inline-block;
}
.footer-legal {
  width: 100%;
  margin-top: 24px;
  color: #999;
  text-align: center;
  font-size: 0.96rem;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
    padding: 24px 10px 10px 10px;
  }
  .footer-legal {
    margin-top: 18px;
  }
}

/* SPECIAL SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.map-placeholder {
  background: #F2F2F2;
  border-radius: 12px;
  padding: 18px;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* BLOG CATEGORIES */
.blog-categories {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.blog-categories li {
  list-style: none;
}
.blog-categories a {
  background: #f3f3f3;
  color: #222;
  border-radius: 18px;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.18s, color 0.18s;
}
.blog-categories a:hover {
  background: #101112;
  color: #fff;
}

/* FORM ELEMENTS */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #dedede;
  padding: 12px 16px;
  background: #F7F7F7;
  margin-bottom: 14px;
  outline: none;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #244674;
}

/* SUCCESS MESSAGE (THANK-YOU) */
.success-message {
  background: #f2f3f6;
  border-left: 4px solid #244674;
  padding: 20px 20px 16px 28px;
  border-radius: 12px;
  margin-bottom: 18px;
}
.next-steps ul {
  margin-top: 10px;
}

/* FEATURE ITEM PATTERN */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPACING FOR ALL FLEX CONTAINERS */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1400;
  background: #101112;
  color: #fff;
  padding: 24px 20px;
  box-shadow: 0 -2px 18px 0 rgba(10,10,10,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-size: 1rem;
  border-radius: 26px 26px 0 0;
  transition: transform 0.38s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-banner .banner-text {
  flex: 2;
  max-width: 680px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 32px;
  padding: 12px 32px;
  border: none;
  cursor: pointer;
  background: #fff;
  color: #101112;
  margin: 0 0 0 8px;
  transition: background 0.18s, color 0.18s;
}
.cookie-consent-banner button.cta-btn {
  background: #244674;
  color: #fff;
}
.cookie-consent-banner button:hover,
.cookie-consent-banner button:focus {
  background: #e6e6e6;
  color: #222;
}
.cookie-consent-banner button.cta-btn:hover,
.cookie-consent-banner button.cta-btn:focus {
  background: #101112;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.97rem;
    padding: 17px 10px 17px 14px;
    border-radius: 18px 18px 0 0;
  }
  .cookie-consent-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    width: 100%;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 33, 36, 0.55);
  z-index: 1600;
  display: none;
  justify-content: center;
  align-items: center;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #101112;
  max-width: 480px;
  width: 95vw;
  border-radius: 22px;
  padding: 34px 26px 26px 26px;
  box-shadow: 0 10px 38px 0 rgba(30,35,40,0.16);
  z-index: 1700;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  animation: fadeInModal 0.33s cubic-bezier(.36,1.4,.42,1) both;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.97) translateY(30px); }
  to { opacity: 1; transform: none; }
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #244674;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal-close:hover {
  background: #f3f3f3;
  border-radius: 50%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232323;
}
.cookie-category input[type='checkbox'] {
  accent-color: #244674;
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-modal .cta-btn {
  background: #244674;
}
.cookie-modal .cta-btn:hover {
  background: #101112;
}
.cookie-modal .essential {
  color: #888;
  font-size: 0.98em;
  margin-left: 5px;
}

/* SCROLLBAR STYLE (SUBTLE & SOPHISTICATED) */
::-webkit-scrollbar {
  width: 9px;
  background: #F2F2F4;
}
::-webkit-scrollbar-thumb {
  background: #D9D9DA;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b5b5b6;
}

/* MICRO-INTERACTIONS & TRANSITIONS */
.cta-btn, .cookie-consent-banner button, .cookie-modal .cta-btn {
  transition: background 0.2s, color 0.16s, box-shadow 0.16s;
}
.feature-grid > div, .benefits-grid > div, .tip-card, .featured-posts > article, .blog-list > article, .card {
  transition: background 0.16s, box-shadow 0.18s, border 0.14s;
}
.mobile-menu, .cookie-modal, .cookie-consent-banner {
  transition: transform 0.36s cubic-bezier(.4,0,.56,1);
}

/* ACCESSIBILITY/FOCUS STATE */
a:focus, button:focus, input:focus, .cta-btn:focus {
  outline: 2.5px solid #244674;
  outline-offset: 2px;
}

/* VISUAL HIERARCHY SPACING (GENERAL) */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 900px) {
  section, .section {
    margin-bottom: 38px;
    padding: 22px 6px;
  }
}

/* CONSISTENT SPACING BETWEEN CARDS/SECTIONS */
.card, .testimonial-card, .tip-card, .service-highlight {
  margin-bottom: 20px;
}

/* MONOCHROME SOPHISTICATED COLOR PALETTE */
body, section, .section, .content-wrapper, .service-highlight, .testimonial-card, .feature-grid > div,
.benefits-grid > div, .tip-card, .card, .next-steps, .featured-posts > article, .blog-list > article {
  background: #fff;
  color: #222;
}
footer, header {
  background: #F7F7F8;
}
h1, h2, h3, h4, h5, h6, .footer-brand p, .success-message {
  color: #101112;
}
.cta-btn, .cookie-consent-banner .cta-btn, .cookie-modal .cta-btn {
  background: #101112;
  color: #fff;
}
.cta-btn:hover, .cookie-consent-banner .cta-btn:hover, .cookie-modal .cta-btn:hover {
  background: #244674;
}

/* HIDE DEFAULT MARKERS FOR ULs WHERE DESIGN REQUIRES */
.section ul, .content-wrapper ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.section ul li, .content-wrapper ul li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #222;
  font-size: 1.04rem;
}
.section ul li:before, .content-wrapper ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  background: #101112;
  border-radius: 50%;
  opacity: 0.08;
}

/* UTILITY CLASSES FOR ENHANCED SPACING AND ALIGNMENT */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 6px !important; }
.mb-1 { margin-bottom: 6px !important; }
.mt-2 { margin-top: 10px !important; }
.mb-2 { margin-bottom: 10px !important; }

/* RESPONSIVE TYPOGRAPHY SCALE (MOBILE-FIRST) */
@media (max-width: 600px) {
  body { font-size: 15px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.1rem; }
  .cta-btn, .cookie-consent-banner button, .cookie-modal .cta-btn { font-size: 1rem; padding: 11px 18px; }
}

/* END OF STYLE.CSS */