/* 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;
}
html {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F5F7FA;
  color: #1A232E;
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #F5F7FA;
  color: #223040;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #29547A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #6EC0A6;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  color: #1A232E;
  line-height: 1.2;
}
h1 { font-size: 2.75rem; font-weight: 700; margin-bottom: 24px; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 20px; }
h3 { font-size: 1.35rem; font-weight: 500; margin-bottom: 16px; }
p { font-size: 1rem; margin-bottom: 16px; color: #273447; }

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

/* HEADER */
header {
  background: #fff;
  border-bottom: 1px solid #E3E8EF;
  box-shadow: 0 1px 7px rgba(41,84,122,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
header img {
  height: 44px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #29547A;
  font-weight: 500;
  transition: color 0.2s;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: #6EC0A6;
  border-bottom: 2px solid #6EC0A6;
}

.button.primary, .button.secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  padding: 12px 28px;
  border-radius: 28px;
  border: none;
  outline: none;
  transition: 
    background 0.18s,
    color 0.18s,
    box-shadow 0.18s,
    transform 0.16s;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(41,84,122,0.08);
  margin-left: 16px;
  display: inline-block;
}
.button.primary {
  background: #29547A;
  color: #fff;
}
.button.primary:hover, .button.primary:focus {
  background: #193751;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px rgba(41,84,122,0.15);
}
.button.secondary {
  background: #fff;
  color: #29547A;
  border: 1.5px solid #29547A;
}
.button.secondary:hover, .button.secondary:focus {
  background: #6EC0A6;
  color: #fff;
  border-color: #6EC0A6;
  box-shadow: 0 2px 10px rgba(110,192,166,0.09);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #29547A;
  padding: 8px 12px;
  margin-left: 12px;
  display: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.17s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #E7F3F0;
  color: #6EC0A6;
}

/* MOBILE NAVIGATION MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41,84,122, 0.97);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.65,1.3,.49,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 26px 32px 8px 0;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(110,192,166,0.15);
}
.mobile-nav {
  margin: 28px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.21rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 6px 20px 6px 4px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6EC0A6;
  color: #1A232E;
}

/* HERO & SECTIONS */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 26px rgba(41,84,122,0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section.hero, section.cta-section,
section.about-hero, section.services-hero, section.pricing-hero, section.references-hero, section.contact-hero, section.thank-you {
  background: #F5F7FA;
  box-shadow: none;
}
section.cta-section {
  align-items: center;
  justify-content: center;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(41,84,122,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 230px;
}

.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;
}

.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  flex-direction: column;
}
.testimonial-card {
  background: #fff;
  color: #1A232E;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 22px rgba(41,84,122,0.08);
  font-size: 1.1rem;
  line-height: 1.5;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 400px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 35px rgba(41,84,122,0.12);
  transform: translateY(-5px) scale(1.02);
}
.testimonial-card p {
  color: #183049;
  font-size: 1.05rem;
}
.testimonial-card span {
  color: #6EC0A6;
  font-size: 0.98rem;
  font-weight: 500;
  margin-left: 10px;
  white-space: nowrap;
}

.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid li, .service-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(41,84,122,0.06);
  padding: 28px 20px 20px 20px;
  min-width: 210px;
  max-width: 350px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.feature-grid li img, .service-list li img {
  height: 32px;
  width: 32px;
  margin-bottom: 5px;
}
.feature-grid li:hover, .feature-grid li:focus-within, .service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 8px 30px rgba(110,192,166,0.11);
  transform: translateY(-4px) scale(1.015);
}
.feature-grid li strong, .service-list li strong {
  font-size: 1.15rem;
  color: #29547A;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-grid li p, .service-list li p {
  font-size: 1rem;
  color: #223040; 
}

.service-list .button.secondary {
  margin-left: 0;
  margin-top: 12px;
}

/* PRICING TABLE */
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 2px 14px rgba(41,84,122,0.06);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 10px;
  font-size: 1.01rem;
  text-align: left;
  color: #183049;
}
.pricing-table th {
  background: #F5F7FA;
  color: #29547A;
  font-weight: 600;
}
.pricing-table tr {
  border-bottom: 1px solid #E6ECF1;
}
.pricing-table tr:last-child {
  border-bottom: none;
}

/* FAQ LIST */
.faq-list-section section, .faq-list-section .content-wrapper {
  gap: 24px;
}
.faq-list dt {
  font-weight: bold;
  color: #29547A;
  font-size: 1.13rem;
  margin-top: 20px;
}
.faq-list dd {
  margin-left: 0;
  padding-left: 14px;
  margin-bottom: 14px;
  border-left: 2px solid #6EC0A6;
  color: #23344D;
  font-size: 1rem;
}

/* LEGAL CONTENT */
.legal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(41,84,122,0.045);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal-content ul {
  margin: 16px 0 16px 18px;
  padding-left: 12px;
}
.legal-content li { 
  margin-bottom: 10px; 
  color: #29547A;
  font-size: 1rem;
}

/* CONTACT PAGE SECTIONS */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #29547A;
  font-size: 1rem;
}
.contact-details li a {
  color: #29547A;
  text-decoration: underline dotted;
}
.contact-details li a:hover, .contact-details li a:focus {
  color: #6EC0A6;
  text-decoration: underline solid;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #E3E8EF;
  box-shadow: 0 -2px 12px rgba(41,84,122,0.03);
  padding: 34px 0 18px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  font-size: 1rem;
}
.footer-nav a {
  color: #29547A;
  margin: 0 4px;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #6EC0A6;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  align-items: center;
  justify-content: center;
  font-size: 0.99rem;
  color: #1A232E;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 3px;
}
.footer-brand {
  color: #AEB9C5;
  font-size: 0.97rem;
  text-align: center;
  margin-top: 10px;
}

/* THANK YOU PAGE */
.thank-you {
  background: #F5F7FA;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1.5px solid #E3E8EF;
  box-shadow: 0 -4px 26px rgba(41,84,122,0.11);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 26px 18px 18px 18px;
  flex-wrap: wrap;
  gap: 18px;
  opacity: 1;
  transition: opacity 0.3s, transform 0.38s cubic-bezier(.65,1.3,.49,1);
}
.cookie-banner.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  max-width: 500px;
  font-size: 1rem;
  color: #223040;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner .accept {
  background: #29547A;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #193751;
}
.cookie-banner .reject {
  background: #fff;
  color: #29547A;
  border: 1.2px solid #29547A;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #6EC0A6;
  color: #fff;
  border-color: #6EC0A6;
}
.cookie-banner .settings {
  background: #F5F7FA;
  color: #29547A;
  border: 1.2px solid #6EC0A6;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #6EC0A6;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  border-radius: 22px;
  z-index: 500;
  min-width: 320px;
  box-shadow: 0 12px 60px rgba(41,84,122,0.18);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transition: opacity 0.32s, transform 0.32s;
}
.cookie-modal.hide {
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%,30%) scale(0.95);
}
.cookie-modal h2 {
  color: #29547A;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  color: #183049;
}
.cookie-modal .toggle {
  width: 44px;
  height: 24px;
  background: #E7F3F0;
  border-radius: 15px;
  position: relative;
  transition: background 0.13s;
  margin-right: 6px;
  border: 1px solid #bfe2d8;
}
.cookie-modal .toggle input {
  display: none;
}
.cookie-modal .toggle-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #6EC0A6;
  border-radius: 50%;
  transition: left 0.16s, background 0.16s;
}
.cookie-modal .toggle input:checked + .toggle-slider {
  left: 22px;
  background: #29547A;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal .close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #29547A;
  position: absolute;
  top: 14px;
  right: 24px;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: background 0.14s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus { background: #f1f8f6; }

/* ALL COMMON FLEX PATTERNS */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; 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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* SPACING: All sections & elements */
section + section { margin-top: 32px; }
.card + .card, .testimonial-card + .testimonial-card, .feature-item + .feature-item {
  margin-left: 20px;
}

/* MEDIA QUERIES (RESPONSIVE) */
@media (max-width: 1100px) {
  .container { max-width: 94vw; }
  .feature-grid, .service-list {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav { gap: 12px; }
  .container { max-width: 99vw; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .main-nav {
    display: none;
  }
  .button.primary, .button.secondary {
    margin-left: 0;
    margin-top: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-grid, .card-container, .feature-grid, .service-list, .testimonials-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }
  .section, section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 11px;
  }
  .feature-grid li, .service-list li, .card, .testimonial-card {
    max-width: 100%;
    min-width: 0;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(41,84,122,0.07);
    padding: 18px 12px;
  }
  .pricing-table table, .pricing-table th, .pricing-table td {
    font-size: 0.99rem;
  }
  .cookie-modal {
    min-width: 94vw;
    left: 50%;
    padding: 18px 4vw 19px 4vw;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.32rem; }
  h3 { font-size: 1.06rem; }
  .button.primary, .button.secondary {
    font-size: 1rem;
    padding: 11px 12px;
  }
  .feature-grid li, .service-list li, .testimonial-card, .card {
    padding: 13px 7px;
  }
  .cookie-banner {
    padding: 14px 8px 10px 8px;
  }
}

/* UTILITY CLASSES & ACCESSIBILITY */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

/* MICRO-INTERACTIONS */
.button, .card, .testimonial-card, .feature-grid li, .service-list li, .mobile-nav a {
  transition: box-shadow 0.2s, background 0.15s, color 0.15s, transform 0.13s;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
  background: #F5F7FA;
}
::-webkit-scrollbar-thumb {
  background: #E3E8EF;
  border-radius: 6px;
}

/* BRAND FONT FACES (for completeness; needs linking in HTML HEAD) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* END OF STYLE.CSS */
