/* === CSS RESET & NORMALIZE (Mobile-First) === */
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, menu, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: linear-gradient(135deg, #F6F8FA 0%, #96B0C6 100%);
  font-family: 'Roboto', Arial, sans-serif;
  color: #23344d;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #1B3556;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #284E76;
}

/* === BASE TYPOGRAPHY === */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1B3556;
  margin-bottom: 20px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #1B3556;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #23344d;
  margin-bottom: 12px;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #23344d;
}
strong, b {
  font-weight: 700;
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #1B3556;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(27,53,86,0.04);
  position: relative;
  z-index: 30;
}
header .container {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  color: #F6F8FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1rem;
  transition: opacity 0.18s, color 0.18s;
  opacity: 0.92;
}
header nav a:hover, header nav a:focus {
  color: #96B0C6;
  opacity: 1;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #1B3556 60%, #96B0C6 120%);
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 25px;
  box-shadow: 0 4px 16px 0 rgba(27,53,86,0.08);
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, color 0.22s;
  display: inline-block;
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-bottom: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #23344d 60%, #7f99b3 120%);
  box-shadow: 0 8px 30px 0 rgba(27,53,86,0.16);
  color: #fff;
}

/* HIDE MOBILE MENU DESKTOP, SHOW BURGER MOBILE */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1B3556;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  z-index: 1002;
  position: relative;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #23344d;
  box-shadow: 0 2px 12px 0 rgba(27,53,86,0.07);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 48, 74, 0.97);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.74,0,.21,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  z-index: 1003;
  box-shadow: 0 6px 30px 0 rgba(27,53,86,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 22px;
  right: 22px;
  cursor: pointer;
  z-index: 1010;
  outline: none;
}
.mobile-nav {
  margin-top: 80px;
  width: 100%;
  display: flex !important;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 8px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 1.3rem;
  padding: 14px 8px 8px 0;
  border-bottom: 1px solid #96B0C6;
  width: 100%;
  transition: color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #96B0C6;
  background: none;
}

@media (min-width: 940px) {
  .mobile-menu-toggle { display: none !important; }
  .mobile-menu { display: none !important; }
  header nav { display: flex !important; }
}
@media (max-width: 939px) {
  header .container nav { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
}

/* === MAIN SECTIONS - GRADIENT & SPACING === */
main>section {
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(27,53,86,0.06);
  margin-bottom: 36px;
}
section .container {
  padding-top: 24px;
  padding-bottom: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* === CARDS, FEATURES & GRIDS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #F6F8FA;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(27,53,86,0.07);
  position: relative;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px 0 rgba(27,53,86,0.13);
  transform: translateY(-4px) scale(1.015);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F8FA;
  border-radius: 14px;
  padding: 24px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(27,53,86,0.05);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* === TESTIMONIALS === */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 26px;
  margin-bottom: 20px;
  background: #fff;
  border-left: 5px solid #96B0C6;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(27,53,86,0.09);
  min-width: 210px;
  max-width: 420px;
  transition: box-shadow 0.22s, border 0.19s;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #1B3556;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: #23344d;
  font-size: 1rem;
}
.testimonial-card:hover {
  border-left: 5px solid #1B3556;
  box-shadow: 0 6px 20px 0 rgba(27,53,86,0.16);
}

/* === CTA BOXES === */
.cta-box {
  border-radius: 14px;
  background: linear-gradient(90deg, #1B3556 0%, #96B0C6 100%);
  color: #fff;
  padding: 36px 24px;
  box-shadow: 0 2px 10px 0 rgba(27,53,86,0.09);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-box h2,
.cta-box p {
  color: #fff !important;
}

/* === TABLES === */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  margin-bottom: 22px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
thead th, tbody td {
  border: 1px solid #96B0C6;
  padding: 10px;
  text-align: left;
}
thead {
  background: #F6F8FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}
tr:nth-child(even) td {
  background: #f3f5f7;
}

/* === FORMS === */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #96B0C6;
  border-radius: 7px;
  padding: 10px 11px;
  margin-bottom: 14px;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: #1B3556;
  outline: 2px solid #96B0C6;
}

/* === FOOTER === */
footer {
  background: #1B3556;
  color: #fff;
  padding: 32px 0 22px 0;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.01em;
  opacity: 0.92;
  text-decoration: underline;
  transition: color 0.18s, opacity 0.1s;
}
footer nav a:hover, footer nav a:focus {
  color: #96B0C6;
  opacity: 1;
}
footer .footer-contact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  margin-top: 21px;
  justify-content: center;
}
.footer-contact img {
  width: 52px;
  height: auto;
  border-radius: 10px;
}
.footer-contact div p {
  font-size: 0.97rem;
  color: #fff;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact div img {
  width: 16px;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 600px) {
  footer .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 13px;
  }
}

/* === LISTS & ICONS === */
ul li, ol li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 32px;
  min-height: 26px;
  color: #23344d;
}
ul li img, ol li img {
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-right: 8px;
}
/* Remove bullet on custom lists */
ul, ol {
  padding-left: 0;
}

/* === CONFIRMATION PAGE === */
.confirmation-message {
  background: #F6F8FA;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(27,53,86,0.08);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* === COOKIES CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  left: 0; 
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #23344d;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  z-index: 1400;
  padding: 20px 8px;
  box-shadow: 0 -2px 14px 0 rgba(27,53,86,0.11);
  animation: cookieBannerUp 0.5s cubic-bezier(.41,1.11,.7,1.01);
  font-size: 1rem;
}
@keyframes cookieBannerUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner__text {
  flex: 1;
  color: #fff;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-btn-primary {
  border-radius: 14px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 8px 22px;
  box-shadow: 0 2px 6px 0 rgba(27,53,86,0.08);
  margin-right: 6px;
  transition: background 0.18s, color 0.14s;
}
.cookie-btn-primary {
  background: linear-gradient(90deg, #1B3556 70%, #96B0C6 180%);
  color: #fff;
  border: none;
}
.cookie-btn-primary:hover,
.cookie-btn-primary:focus {
  background: linear-gradient(90deg, #23344d 80%, #7f99b3 160%);
  color: #fff;
}
.cookie-btn {
  background: #fff;
  color: #1B3556;
  border: 1px solid #96B0C6;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #96B0C6;
  color: #fff;
}

/* COOKIES MODAL */
.cookie-modal {
  position: fixed;
  z-index: 1500;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(27,53,86,0.57);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.3s;
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__content {
  background: #fff;
  border-radius: 19px;
  overflow: hidden;
  box-shadow: 0 6px 34px 0 rgba(27,53,86,0.16);
  min-width: 330px; max-width: 97vw;
  padding: 38px 26px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #23344d;
}
.cookie-modal__header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 13px;
  color: #1B3556;
}
.cookie-modal__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-modal__toggle {
  accent-color: #1B3556;
}
.cookie-modal__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 13px;
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #23344d;
  position: absolute;
  top: 15px;
  right: 23px;
  cursor: pointer;
  z-index: 22;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1100px) {
  .container { max-width: 1000px; }
}
@media (max-width: 940px) {
  .container { max-width: 97vw; }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 22px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 800px) {
  header .container,
  footer .container,
  .section .container {
    padding-left: 8px; padding-right: 8px;
  }
  .content-wrapper { gap: 16px; }
  main>section {
    border-radius: 8px;
    margin-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
  }
  .cta-box { padding: 25px 10px; }
  .card, .feature-item, .testimonial-card { padding: 18px 10px !important; }
  .testimonial-card { max-width: 100%; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.02rem; }
  .cta-btn, .cookie-btn, .cookie-btn-primary { font-size: 0.98rem; padding: 9px 13px; }
  .cta-box { padding: 18px 5px; }
  .testimonial-card { padding: 14px 7px; }
}

/* === MICRO-INTERACTIONS & TRANSITIONS === */
button, .cta-btn, .cookie-btn, .cookie-btn-primary {
  transition: background 0.16s, color 0.16s, box-shadow 0.19s, transform 0.13s;
}
button:active, .cta-btn:active {
  transform: scale(0.98);
}

/* === CUSTOM SCROLLBAR FOR MODERN LOOK === */
::-webkit-scrollbar {
  width: 9px;
  background: #e6eaf0;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: #96B0C6;
  border-radius: 12px;
}

/* === Z-INDEX CONTROL === */
header { z-index: 30; }
.mobile-menu { z-index: 1003; }
.cookie-banner { z-index: 1400; }
.cookie-modal { z-index: 1500; }

/* === FOCUS STYLES === */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 2px dashed #96B0C6;
  outline-offset: 2px;
}

/* === HIDE NON-DESKTOP, SHOW ON MOBILE === */
@media (max-width: 940px){
  header nav { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
}
@media (min-width: 941px){
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* === DEMO: For Cookie Modal/Consent Placeholder (ensure visibility if JS injects) === */
.cookie-banner { display: flex !important; }
.cookie-modal { display: flex !important; }

/* === END OF STYLE.CSS === */
