/* =========================================================
   RESET & BASE
   ======================================================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F4F7FA;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  background: #F4F7FA;
  color: #232C33;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
ul, ol {
  list-style: none;
}
a {
  color: #184973;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F7953B;
}
button, .cta-button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border: none;
  outline: none;
  background: #184973;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.22s, color 0.17s, box-shadow 0.22s, transform 0.22s;
  box-shadow: 0 2px 14px 0 rgba(24,73,115,0.08);
  margin-top: 16px;
  display: inline-block;
}
.cta-button:hover, button:hover, .cta-button:focus, button:focus {
  background: #F7953B;
  color: #184973;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 24px 0 rgba(24,73,115,0.14);
}

/* Typography hierarchy */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #184973;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: #184973;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.20rem;
  margin-bottom: 13px;
  color: #184973;
}
p {
  margin-bottom: 14px;
  color: #38444C;
  font-size: 1rem;
}
strong {
  font-weight: bold;
  color: #184973;
}

/* Container and layout patterns */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(18,39,59,0.04);
}

/* ===============================
   HEADER & NAVIGATION
   =============================== */
.site-header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 24px 0 rgba(24,73,115,0.07);
  position: sticky;
  top: 0;
  z-index: 30;
}
.site-header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
}
.site-header img {
  height: 54px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 6px 13px;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.18s, color 0.16s;
}
.main-nav a:not(.cta-button):hover, .main-nav a:not(.cta-button):focus {
  background: #F4F7FA;
  color: #184973;
}
.main-nav .cta-button {
  margin-left: 8px;
  background: #F7953B;
  color: #fff;
  border-radius: 6px;
  font-size: 1.05rem;
  box-shadow: none;
}
.main-nav .cta-button:hover, .main-nav .cta-button:focus {
  background: #184973;
  color: #fff;
}

/* Burger/Mobile menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  line-height: 1;
  color: #184973;
  cursor: pointer;
  margin-left: 16px;
  z-index: 32;
  transition: background 0.15s;
  padding: 8px 10px 4px 10px;
  border-radius: 6px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F4F7FA;
  outline: none;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(248, 252, 255, 0.98);
  box-shadow: 0 0 64px -12px #18497310;
  z-index: 100;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.7,.15,.4,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.15rem;
  background: none;
  border: none;
  color: #184973;
  cursor: pointer;
  margin: 8px 22px 28px 0;
  transition: color 0.18s;
  z-index: 102;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F7953B;
  background: #F4F7FA;
  border-radius: 6px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding-left: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #184973;
  font-weight: 500;
  font-size: 1.18rem;
  border-radius: 5px;
  padding: 11px 0 9px 6px;
  margin-bottom: 6px;
  transition: color 0.18s, background 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4F7FA;
  color: #F7953B;
}

/* Hide desktop nav on small screens, show burger */
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===============================
   SECTION SPACING & LAYOUTS
   =============================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 rgba(18,39,59,0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  padding: 24px 18px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 30px 0 rgba(24,73,115,0.13);
  transform: translateY(-3px) scale(1.01);
}
.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 24px;
  background: #F4F7FA;
  border-radius: 11px;
  box-shadow: 0 2px 12px 0 rgba(24,73,115,0.06);
  margin-bottom: 20px;
  margin-top: 6px;
  flex-direction: column;
}
blockquote {
  font-style: italic;
  color: #184973;
  margin-bottom: 13px;
  font-size: 1.12rem;
  line-height: 1.6;
}
.testimonial-name {
  font-weight: 600;
  color: #184973;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.text-section {
  background: #FAFBFC;
  border-radius: 11px;
  padding: 18px 24px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px 0 rgba(24,73,115,0.03);
  display: flex;
  flex-direction: column;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
footer p {
  color: #758399;
  font-size: 0.97rem;
  text-align: center;
  margin-bottom: 0;
}

/* ===============================
   FORM & ICONS
   =============================== */
input, textarea {
  border: 1.5px solid #DFE8F2;
  border-radius: 7px;
  padding: 11px;
  min-width: 226px;
  width: 100%;
  font-size: 1rem;
  margin-bottom: 18px;
  background: #FAFCFE;
  color: #232C33;
  transition: border 0.14s;
}
input:focus, textarea:focus {
  border-color: #F7953B;
  outline: none;
}

/* List / icon + text styles */
ul li, ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
ul li img, ol li img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-right: 6px;
  filter: grayscale(20%) saturate(90%);
}

/* ================================
    COOKIE BANNER & MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1001;
  background: #ffffff;
  box-shadow: 0 -4px 36px 0 rgba(24,73,115,0.13);
  padding: 30px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeInBottom 0.44s cubic-bezier(.7,.2,.3,1);
}
@keyframes fadeInBottom {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #184973;
  font-size: 1rem;
  margin-bottom: 6px;
  text-align: center;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.cookie-actions button {
  min-width: 120px;
}
.cookie-accept {
  background: #F7953B;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #184973;
  color: #fff;
}
.cookie-reject {
  background: #F4F7FA;
  color: #184973;
  border: 1.5px solid #DFE8F2;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #DFE8F2;
  color: #184973;
}
.cookie-settings {
  background: transparent;
  color: #F7953B;
  border: 1.5px solid #F7953B;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #F7953B;
  color: #fff;
}
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100vw;
  height: 100vh;
  background: rgba(24,73,115,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 42px rgba(18,39,59,0.11);
  padding: 32px 26px;
  width: 95%;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: popIn 0.33s cubic-bezier(.8,.18,.37,1);
}
@keyframes popIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  color: #184973;
  font-size: 1.27rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 11px 0;
  padding: 7px 0;
  border-bottom: 1px solid #F4F7FA;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #184973;
}
.cookie-category input[type="checkbox"] {
  accent-color: #184973;
  width: 19px;
  height: 19px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-end;
}

/* ===============================
    FOOTER
   =============================== */
footer {
  width: 100%;
  background: #fff;
  margin-top: 52px;
  padding: 48px 0 22px 0;
  box-shadow: 0 -4px 36px 0 rgba(24,73,115,0.04);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #184973;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 8px;
  transition: color 0.16s, background 0.16s;
  border-radius: 5px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: #F7953B;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 950px) {
  h1, .h1 {
    font-size: 1.6rem;
  }
  h2, .h2 {
    font-size: 1.18rem;
  }
  .container {
    max-width: 100vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  footer {
    padding: 35px 0 19px;
  }
  .section {
    padding: 22px 8px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 22px 3px;
  }
  .content-wrapper, .card, .testimonial-card, .text-section {
    padding: 17px 8px !important;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 8px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 17px 9px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 500px) {
  .site-header img {
    height: 36px;
  }
  .cookie-modal-content {
    padding: 19px 7px;
  }
  html {
    font-size: 15px;
  }
}

/* ===============================
   UTILITIES
   =============================== */
.hide {
  display: none !important;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-20 {
  gap: 20px;
}
.gap-32 {
  gap: 32px;
}

/* ===============================
   MICRO-INTERACTIONS
   =============================== */
.card, .testimonial-card, .cta-button, .cookie-banner, .cookie-modal-content {
  transition: box-shadow 0.18s, transform 0.16s, background 0.16s, color 0.18s;
}

/* ===============================
   SCROLLBAR STYLE
   =============================== */
::-webkit-scrollbar {
  width: 10px;
  background: #F4F7FA;
}
::-webkit-scrollbar-thumb {
  background: #DFE8F2;
  border-radius: 6px;
}

/* ===============================
   FOCUS STATES (a11y)
   =============================== */
a:focus, button:focus, input:focus, textarea:focus, .cta-button:focus {
  outline: 2px solid #184973;
  outline-offset: 2px;
}

/* ===============================
   NO GRID OR COLUMNS USED
   =============================== */
/* All layouts use only flexbox, as per requirements. */
