/* 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 {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #fff;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1A2634;
  background: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #203864;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #49A078;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  color: inherit;
  padding: 0;
  cursor: pointer;
}

/* FONTS */
h1, h2, h3, h4 {
  font-family: 'Source Sans Pro', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #203864;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.18;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #203864;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

p, li, td, th {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1A2634;
}
strong {
  font-weight: 700;
}

.subheadline {
  font-size: 1.25rem;
  color: #516179;
  margin-bottom: 24px;
  font-weight: 400;
}

/* CONTAINER */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

/* HEADER/NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #e7eaf0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  width: 160px;
  flex-shrink: 0;
}
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: 24px;
  flex: 1 1 auto;
}
.main-nav a {
  padding: 6px 0;
  color: #203864;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #49A078;
}
.cta-primary {
  display: inline-block;
  padding: 10px 32px;
  border-radius: 32px;
  background: #203864;
  color: #fff;
  font-family: 'Source Sans Pro', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
  box-shadow: 0 1px 8px rgba(32,56,100,0.06);
  border: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  margin-left: 16px;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: #49A078;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 3px 18px rgba(73,160,120,0.10);
}
.cta-secondary {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 32px;
  border: 1px solid #203864;
  background: #fff;
  color: #203864;
  font-family: 'Source Sans Pro', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  box-shadow: 0 1px 8px rgba(32,56,100,0.03);
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.08s;
  margin-top: 14px;
  text-align: center;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #203864;
  color: #fff;
  border-color: #203864;
  transform: translateY(-1px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.7,.2,.25,1);
  box-shadow: 0 2px 32px rgba(32,56,100,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: #203864;
  background: none;
  border: none;
  margin-bottom: 22px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s, transform 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #49A078;
  transform: scale(1.12) rotate(8deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #203864;
  font-size: 1.15rem;
  font-family: 'Source Sans Pro', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid #f1f3f6;
  transition: color 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #49A078;
}

@media (max-width: 1100px) {
  header .container {
    gap: 16px;
  }
  .main-nav {
    gap: 16px;
    margin-left: 10px;
  }
  .cta-primary {
    margin-left: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: 0.97rem;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    font-size: 2.1rem;
    color: #203864;
    background: none;
    border: none;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s, transform 0.12s;
    height: 48px;
    width: 48px;
    border-radius: 10px;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    color: #49A078;
    background: #f1f3f6;
    outline: none;
  }
  header .cta-primary {
    display: none;
  }
}

@media (max-width: 600px) {
  header .container {
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 8px;
  }
  header img {
    width: 130px;
  }
}

/* MAIN SPACING & SECTION TYPOGRAPHY */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 17px rgba(32,56,100,0.07);
  padding: 28px 26px;
  min-width: 260px;
  flex: 1 1 320px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(73,160,120,0.10);
  transform: translateY(-4px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  background: #f1f3f6;
  color: #1A2634;
  border-radius: 18px;
  box-shadow: 0 3px 20px rgba(32,56,100,0.06);
  margin-bottom: 22px;
  flex-direction: column;
  min-width: 220px;
  width: 100%;
  max-width: 520px;
}
.testimonial-card .rating-stars {
  color: #49A078;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  margin-bottom: 4px;
}
.testimonial-author {
  color: #516179;
  font-size: 1rem;
  margin-top: 6px;
  font-style: italic;
}
.testimonial-average {
  border-radius: 14px;
  background: #fff;
  padding: 10px 24px;
  box-shadow: 0 1px 6px rgba(73,160,120,0.09);
  margin-top: 10px;
  font-weight: 600;
  color: #203864;
  letter-spacing: 0.1px;
  font-size: 1.1rem;
  display: inline-block;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ICONS */
li img {
  vertical-align: middle;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* FOR FORMS, LINKS, TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 16px 0;
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 1px 10px rgba(32,56,100,0.04);
  border-radius: 14px;
  overflow: hidden;
  min-width: 300px;
}
thead {
  background: #203864;
  color: #fff;
}
th, td {
  padding: 14px 16px;
  text-align: left;
}
th {
  font-family: 'Source Sans Pro', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
tbody tr {
  border-bottom: 1px solid #f1f3f6;
}
tbody tr:last-child {
  border-bottom: none;
}
tbody tr:hover {
  background: #f1f3f6;
  transition: background 0.18s;
}

/* LISTS */
ul, ol {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
ul li, ol li {
  padding: 10px 0;
  position: relative;
  color: #1A2634;
  line-height: 1.7;
  font-size: 1rem;
}
ul li:not(:last-child), ol li:not(:last-child) {
  margin-bottom: 2px;
}
ul li::before, ol li::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: #203864;
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
  opacity: 0.20;
}
ul li img, ol li img {
  margin-right: 11px;
  vertical-align: middle;
}
ul li img + strong, ul li img + span {
  margin-left: 2px;
}

/* REGULAR TEXT, BLOCKS */
p {
  margin-bottom: 14px;
}
.text-section a {
  color: #49A078;
  text-decoration: underline;
  font-weight: 500;
}
.text-section a:hover, .text-section a:focus {
  color: #203864;
}

/* FOOTER */
footer {
  background: #f1f3f6;
  padding: 32px 0 20px 0;
  border-top: 1px solid #e7eaf0;
  margin-top: 40px;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 8px;
}
.footer-menu a {
  color: #203864;
  font-weight: 600;
  font-size: 1rem;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #49A078;
  text-decoration: underline;
}
.brand-info {
  color: #516179;
  line-height: 1.6;
}
.brand-info span {
  color: #203864;
  font-weight: 700;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 1px solid #e7eaf0;
  box-shadow: 0 -3px 20px rgba(32,56,100,0.07);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  gap: 22px;
  transition: transform 0.34s cubic-bezier(.7,.2,.25,1), opacity 0.33s;
}
.cookie-banner.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px);
}
.cookie-banner__text {
  font-size: 1rem;
  color: #203864;
  margin-right: 10px;
  max-width: 580px;
  line-height: 1.6;
}
.cookie-banner__actions {
  display: flex;
  gap: 11px;
}
.cookie-btn {
  padding: 8px 22px;
  font-size: 1rem;
  font-family: 'Source Sans Pro', 'Roboto', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 28px;
  background: #203864;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(32,56,100,0.07);
  cursor: pointer;
  transition: background 0.15s,box-shadow 0.16s,transform 0.08s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #49A078;
  color: #fff;
  transform: scale(1.04);
}
.cookie-btn--secondary {
  background: #fff;
  color: #203864;
  border: 1px solid #203864;
}
.cookie-btn--secondary:hover, .cookie-btn--secondary:focus {
  background: #203864;
  color: #fff;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,56,100,0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  min-width: 320px;
  max-width: 96vw;
  max-height: 96vh;
  box-shadow: 0 6px 32px rgba(32,56,100,0.13);
  padding: 34px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  align-items: flex-start;
}
.cookie-modal__close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #203864;
  line-height: 1;
  padding: 6px;
  cursor: pointer;
  transition: color 0.15s, transform 0.14s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #49A078;
  transform: scale(1.14) rotate(8deg);
}
.cookie-modal__title {
  font-size: 1.2rem;
  color: #203864;
  font-weight: 700;
  margin-bottom: 4px;
}
.cookie-modal__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 6px 0 14px 0;
  width: 100%;
}
.cookie-modal__item {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 20px;
  background: #e7eaf0;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #49A078;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(32,56,100,0.10);
  transition: transform 0.16s;
}
.cookie-toggle:checked:before {
  transform: translateX(14px);
}
.cookie-toggle[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 550px) {
  .cookie-modal {
    min-width: 0;
    padding: 20px 10px 20px 12px;
    font-size: 0.95rem;
  }
  .cookie-modal__close {
    font-size: 1.3rem;
    top: 8px; right: 8px;
    padding: 2px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 17px 10px;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
  section {
    padding: 32px 6px;
  }
}
@media (max-width: 768px) {
  section {
    margin-bottom: 44px;
    padding: 24px 4px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .content-wrapper, .text-section, .card-content {
    gap: 14px;
  }
  .card-container, .content-grid {
    gap: 10px;
  }
  .testimonial-card {
    min-width: 140px;
    max-width: 100%;
    padding: 12px;
  }
}
@media (max-width: 600px) {
  .testimonial-card {
    font-size: 0.96rem;
    padding: 10px;
    border-radius: 11px;
  }
  .testimonial-card .rating-stars {
    font-size: 1.07rem;
  }
  .card {
    padding: 17px 10px;
    border-radius: 11px;
    min-width: 90px;
  }
  .testimonial-average {
    padding: 7px 12px;
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  section {
    padding: 10px 2px 10px 2px;
  }
  .brand-info {
    font-size: 0.92rem;
  }
  .footer-menu {
    gap: 11px;
  }
}
@media (max-width: 430px) {
  h1 {
    font-size: 1.38rem;
    margin-bottom: 15px;
  }
  .brand-info {
    font-size: 0.83rem;
  }
}

/* UTILITIES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }

/* MICRO-ANIMATIONS */
.card, .testimonial-card, .cta-primary, .cta-secondary, .cookie-btn, .mobile-menu-toggle {
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.14s, border 0.14s;
}

/* Miscellaneous tweaks */
::-webkit-input-placeholder { color: #b1b7be; }
:-ms-input-placeholder { color: #b1b7be; }
::placeholder { color: #b1b7be; opacity: 1; }

/* Hide scroll when mobile menu open */
body.menu-open {
  overflow: hidden;
}

/*------ END CSS ------*/
