/* ===================================
   CSS Reset & Normalize
=================================== */
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;
  scroll-behavior: smooth;
  background: #F9F9F9;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #232B36;
  background: #F9F9F9;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #094067;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #3DA9FC;
}
ul, ol { margin-left: 20px; }
table { border-collapse: collapse; width: 100%; }
th, td { padding: 12px 16px; border: 1px solid #d5dbe5; font-size: 16px; }
th { background: #F3F6FA; font-weight: 600; text-align: left; }

/* Typography scale */
h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  color: #094067;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -.5px;
  line-height: 1.2;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  color: #094067;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  color: #3DA9FC;
  font-weight: 600;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
p, li {
  color: #232b36;
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  color: #094067;
  font-weight: 700;
}
.subheadline {
  font-size: 1.25rem;
  color: #47566D;
  margin-bottom: 28px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ===============
   Layout Containers
================== */
.container {
  width: 100%;
  max-width: 1172px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 3px 20px 0 rgba(30,50,80,0.07);
}

/* Cards and Features */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(9,64,103,0.09);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  flex: 1 1 280px;
  transition: box-shadow .18s, transform .15s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(61,169,252,0.17);
  transform: translateY(-3px);
}

.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;
  padding: 20px;
  background: #F3F6FA;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(9,64,103,0.08);
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 290px;
  transition: box-shadow .2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(61,169,252,0.14);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-name {
  font-size: 1rem;
  font-weight: 500;
  color: #094067;
  margin-top: 8px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(9,64,103,0.07);
  gap: 15px;
  padding: 26px 22px;
  flex: 1 1 240px;
  min-width: 200px;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: flex-start;
}

/*********************
    Header/Nav
**********************/
header {
  background: #fff;
  border-bottom: 1px solid #EBEEF2;
  position: sticky;
  z-index: 40;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 8px 0 rgba(9,64,103,0.03);
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  min-height: 80px;
  justify-content: space-between;
}
nav.main-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232b36;
  font-weight: 500;
  border-radius: 4px;
  padding: 8px 13px;
  transition: background .17s, color .17s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: #F3F6FA;
  color: #094067;
}
.cta-primary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 24px;
  background: #3DA9FC;
  color: #fff !important;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 2px 12px 0 rgba(61,169,252,0.13);
  border: none;
  transition: background .15s, box-shadow .15s, color .15s, transform .14s;
  cursor: pointer;
  margin-left: 18px;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: #094067;
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(9,64,103,0.18);
  transform: translateY(-2px) scale(1.03);
}

/************************
   Mobile menu
************************/
.mobile-menu-toggle {
  display: none;
  margin-left: 20px;
  font-size: 2.3rem;
  line-height: 1;
  border: none;
  background: none;
  color: #094067;
  cursor: pointer;
  z-index: 60;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F3F6FA;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.68,-0.6,.26,1.6);
  z-index: 1050;
  box-shadow: 0 4px 24px 0 rgba(9,64,103,.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 26px 0 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #094067;
  background: none;
  border: none;
  margin-bottom: 36px;
  padding: 8px 10px;
  cursor: pointer;
  transition: background .15s;
  border-radius: 8px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #F3F6FA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 10px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #094067;
  font-weight: 500;
  padding: 13px 0 11px 0;
  border-bottom: 1px solid #eeeff4;
  display: block;
  transition: color .15s, background .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3F6FA;
  color: #3DA9FC;
}

/**********************************
  Hero Section & CTAs
***********************************/
.hero-section {
  background: linear-gradient(90deg, #F3F6FA 55%, #fff 100%);
  padding: 64px 0 44px 0;
  margin-bottom: 60px;
}
.hero-section .container {
  align-items: flex-start;
}
.hero-section .content-wrapper {
  gap: 22px;
  align-items: flex-start;
}
.cta-section {
  background: #3DA9FC;
  color: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 42px 20px;
  box-shadow: 0 3px 24px 0 rgba(61,169,252,0.13);
}
.cta-section h2,
.cta-section h1 {
  color: #fff;
}
.cta-section .cta-primary {
  margin-top: 10px;
}
.mini-contact-info p {
  color: #fff;
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 3px;
}

/************************************
  Service Cards, Pricing Table, etc
*************************************/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.service-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 rgba(9,64,103,0.07);
  padding: 26px 22px;
  flex: 1 1 260px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .14s;
}
.service-item img {
  width: 40px;
  height: 40px;
}
.service-item h2 {
  font-size: 1.12rem;
  color: #094067;
  margin: 9px 0 8px 0;
}
.service-item .service-price {
  color: #3DA9FC;
  font-weight: 700;
  font-size: 1.18rem;
  margin-top: 9px;
}
.service-item:hover {
  box-shadow: 0 8px 22px 0 rgba(61,169,252,0.16);
  transform: translateY(-2px);
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F3F6FA;
  border-radius: 8px;
  padding: 11px 18px;
  font-size: 1rem;
  color: #232b36;
}
.benefit-list img {
  width: 24px; height: 24px;
  display: inline-block;
}

/***************
    Steps
****************/
.step-list,
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  padding-left: 0;
  counter-reset: step;
}
.step-list li,
.process-steps li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  gap: 10px;
  padding: 22px 20px 16px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(9,64,103,0.06);
  min-width: 235px;
  flex: 1 1 240px;
  position: relative;
  margin-bottom: 20px;
  list-style: none;
}
.step-list li img,
.process-steps li img {
  width: 33px;
  height: 33px;
  margin-bottom: 4px;
}

/**********************
  Misc. Lists & Articles
***********************/
.how-to-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.how-to-articles article {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 10px 0 rgba(9,64,103,0.05);
  padding: 22px 16px 18px 16px;
  flex: 1 1 250px;
  min-width: 200px;
  margin-bottom: 20px;
}
.faq-snippets, .downloadable-checklists {
  margin-top: 32px;
  background: #F3F6FA;
  border-radius: 10px;
  padding: 20px 20px 14px 20px;
  box-shadow: 0 1px 7px 0 rgba(9,64,103,0.04);
}
.faq-snippets ul, .downloadable-checklists ul {
  margin-top: 8px;
}
.planning-tips {
  margin-top: 18px;
}

/**********************
   Tables & Legal
***********************/
.pricing-table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 10px 0 rgba(9,64,103,0.09);
  background: #fff;
  margin: 28px 0 22px 0;
}
.info-text {
  background: #F3F6FA;
  border-radius: 8px;
  padding: 16px 22px;
  margin-top: 20px;
  color: #47566D;
}
.legal-text h2 {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 1.18rem;
  color: #47566D;
}

/**********************
   FAQ Accordion
***********************/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #F3F6FA;
  border-radius: 8px;
  box-shadow: 0 1px 7px 0 rgba(9,64,103,0.04);
  padding: 18px 20px;
  margin-bottom: 7px;
  cursor: pointer;
  transition: box-shadow .13s;
}
.faq-item h3 {
  font-size: 1.1rem;
  color: #094067;
  margin-bottom: 5px;
}
.faq-answer {
  font-size: 1rem;
  color: #232b36;
  padding-top: 7px;
}
.faq-item.active, .faq-item:focus-within {
  box-shadow: 0 3px 15px 0 rgba(61,169,252,0.13);
}

/***********************
   Footer
************************/
footer {
  background: #fff;
  border-top: 1px solid #EBEEF2;
  padding: 32px 0 20px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-end;
  gap: 22px;
  min-height: 60px;
  justify-content: space-between;
}
footer .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  width: 100%;
}
footer .footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 0.98rem;
  color: #47566D;
}
footer .footer-nav a {
  color: #657188;
  transition: color .14s;
}
footer .footer-nav a:hover {
  color: #3DA9FC;
}
footer p {
  color: #47566D;
  font-size: 0.96rem;
}
footer img {
  height: 36px;
  width: auto;
}

/*************************
   Legal Pages Formatting
***************************/
.text-section.legal-text {
  background: #fff;
  border-radius: 10px;
  padding: 24px 20px 14px 20px;
  margin-bottom: 18px;
  box-shadow: 0 1px 7px 0 rgba(9,64,103,0.06);
}

/***********************************
   Address Map/Contact block
************************************/
.address-map {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 12px;
  background: #F3F6FA;
  border-radius: 8px;
  padding: 11px 9px 11px 16px;
}
.address-map img {
  width: 26px;
  height: 26px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 14px 0 10px 0;
}

/***************************************
  Cookie Consent Banner & Preferences
****************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1100;
  background: #fff;
  box-shadow: 0px -2px 16px rgba(61,169,252,0.06);
  padding: 24px 20px;
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: center;
  border-top: 2px solid #3DA9FC;
  animation: slideInUp .45s cubic-bezier(.4,0,.2,1);
}
@keyframes slideInUp {
  0% { transform: translateY(120%); }
  100% { transform: translateY(0%); }
}
.cookie-banner__text {
  flex: 1 1 280px;
  font-size: 1.02rem;
  color: #232b36;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex: 0 0 auto;
  align-items: center;
}
.cookie-btn {
  padding: 10px 24px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .18s;
}
.cookie-btn.accept {
  background: #3DA9FC;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(61,169,252,0.09);
}
.cookie-btn.accept:hover {
  background: #094067;
}
.cookie-btn.reject {
  background: #F3F6FA;
  color: #094067;
}
.cookie-btn.reject:hover {
  background: #e8ebef;
}
.cookie-btn.settings {
  background: transparent;
  color: #3DA9FC;
  border: 1px solid #3DA9FC;
}
.cookie-btn.settings:hover {
  background: #F3F6FA;
  color: #094067;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  z-index: 1110;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(9,64,103,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .22s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal__content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 32px rgba(61,169,252,0.17);
  padding: 38px 30px 32px 30px;
  max-width: 448px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 10px; right: 13px;
  font-size: 1.6rem;
  color: #3DA9FC;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .14s;
  border-radius: 8px;
  padding: 4px 8px;
}
.cookie-modal__close:hover {
  color: #094067;
}
.cookie-modal__title {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.21rem;
  color: #094067;
  font-weight: 600;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.cookie-category input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #3DA9FC;
  outline: 2px solid #3DA9FC;
}
.cookie-category label {
  color: #232b36;
}
.cookie-essential {
  opacity: .62;
  pointer-events: none;
}
.cookie-modal__actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: flex-end;
}

/*************************************
 Responsive & Media Queries
**************************************/
@media (max-width: 1040px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  .section, .cta-section {
    padding: 32px 9px;
  }
  .feature-grid,.service-list,.testimonial-list, .content-grid, .how-to-articles {
    gap: 16px;
  }
  .container { padding: 0 8px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    max-width: 99vw;
    padding: 0 5px;
  }
  .feature-grid,.service-list,.testimonial-list, .content-grid, .content-wrapper, .how-to-articles {
    flex-direction: column !important;
    gap: 15px;
  }
  .section, .cta-section {
    margin-bottom: 36px;
    padding: 22px 2px;
    border-radius: 9px;
  }
  header .container, footer .container {
    flex-direction: row;
    gap: 10px;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    padding: 0 3vw;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .testimonial-card, .feature-item, .service-item, .card {
    min-width: 200px;
    width: 100%;
    flex-basis: auto;
    padding: 20px 13px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 500px) {
  .hero-section {
    padding: 38px 0 22px 0;
  }
  .cta-section {
    padding: 22px 3px;
  }
  .cookie-modal__content {
    min-width: 0;
    padding: 20px 6px 14px 7px;
    max-width: 97vw;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    font-size: 1rem;
    max-height: 92vw;
  }
}

/*************************************
   Focus & Accessibility
**************************************/
a, button, input, select, textarea {
  outline: none;
}
a:focus, .cta-primary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-btn:focus {
  box-shadow: 0 0 0 2px #3DA9FC, 0 0 4px 0 #09406744;
}

/****************************************
 Smooth transitions/default animations
****************************************/
*, ::before, ::after {
  transition-property: color, background, box-shadow, border, opacity, transform;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: .16s;
}

/**************************************
 Hide elements on print
***************************************/
@media print {
  .mobile-menu, .cookie-banner, .cookie-modal, header, footer, .mobile-menu-toggle { display: none !important; }
  body, .container { background: #fff !important; }
}
