/* CSS RESET & BASE ------------ */
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: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FFFFFF;
  color: #184D63;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.33,1,0.68,1);
}
img {
  border: 0;
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s cubic-bezier(0.33,1,0.68,1), color 0.2s cubic-bezier(0.33,1,0.68,1);
}
*:focus {
  outline: 2px solid #F6B109;
  outline-offset: 2px;
}

/* TYPOGRAPHY ------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #184D63;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1.13;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  line-height: 1.18;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
p, ul li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #184D63;
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

strong {
  font-weight: 700;
}

/* LAYOUT & SPACING ------------ */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  box-shadow: 0 2px 16px rgba(24,77,99,0.03);
  border-radius: 18px;
}
@media (max-width: 600px) {
  .section, section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(24, 77, 99, 0.06);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s cubic-bezier(0.33,1,0.68,1), transform 0.18s cubic-bezier(0.33,1,0.68,1);
}
.card:hover {
  box-shadow: 0 4px 18px rgba(24, 77, 99, 0.13);
  transform: translateY(-5px) scale(1.01);
  z-index: 2;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .text-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768px) {
  .text-image-section, .text-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  background: #F7FAFC;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(24,77,99,0.05);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 0;
  font-size: 1.05rem;
  color: #184D63;
  position: relative;
  transition: box-shadow 0.16s cubic-bezier(0.33,1,0.68,1), transform 0.17s;
}
.testimonial-card p {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #184D63;
  font-size: 1rem;
  font-style: italic;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  color: #184D63;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(246,177,9,0.07);
  transform: translateY(-2px) scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.gap-20 {
  gap: 20px;
}
.gap-24 {
  gap: 24px;
}
.gap-32 {
  gap: 32px;
}

/* HEADER & NAVIGATION --------- */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 2px 20px rgba(24,77,99,0.04);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
  padding: 0;
  min-height: 72px;
}
.logo-header {
  padding: 10px 20px 10px 16px;
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  gap: 24px;
  flex-grow: 1;
  align-items: center;
  margin-left: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #184D63;
  font-size: 1rem;
  padding: 8px 6px;
  border-radius: 7px;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6B109;
  color: #184D63;
  font-weight: 600;
}
.cta-btn {
  display: inline-block;
  background: #184D63;
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  padding: 12px 28px;
  box-shadow: 0 2px 14px rgba(24,77,99,0.07);
  margin-left: 28px;
  margin-right: 18px;
  letter-spacing: 0.04em;
  border: none;
  transition: background 0.16s, box-shadow 0.18s, color 0.14s, transform 0.13s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F6B109;
  color: #184D63;
  box-shadow: 0 4px 24px rgba(246,177,9,0.12);
  transform: translateY(-1px) scale(1.04);
}
@media (max-width: 960px) {
  .main-nav {
    gap: 16px;
    margin-left: 8px;
  }
  .cta-btn {
    margin-left: 8px;
    margin-right: 8px;
    padding: 12px 19px;
    font-size: 1rem;
  }
}

/* MOBILE NAVIGATION ----------- */
.mobile-menu-toggle {
  display: none;
  background: #FFF;
  border: none;
  font-size: 2.1rem;
  color: #184D63;
  padding: 10px 16px 10px 10px;
  border-radius: 8px;
  transition: background 0.13s, box-shadow 0.14s, color 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F6B109;
  color: #184D63;
  box-shadow: 0 2px 14px rgba(246,177,9,0.13);
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  box-shadow: 0 0 44px rgba(24,77,99,0.12);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.77,0,0.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 25px 26px 24px 24px;
  gap: 28px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: #184D63;
  background: #FFF;
  border-radius: 8px;
  border: none;
  padding: 8px 13px;
  margin-bottom: 14px;
  transition: background 0.14s, color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F6B109;
  color: #184D63;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #184D63;
  font-weight: 500;
  font-size: 1.13rem;
  padding: 14px 4px;
  border-radius: 7px;
  transition: background 0.16s, color 0.14s;
  width: 100%;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6B109;
  color: #184D63;
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION ---------------- */
.hero {
  background: #184D63;
  color: #FFF;
  border-radius: 14px;
  min-height: 260px;
  margin-bottom: 54px;
  box-shadow: 0 8px 32px rgba(24,77,99,0.07);
  padding: 48px 20px;
  display: flex;
  align-items: center;
}
.hero .container, .hero .content-wrapper {
  width: 100%;
}
.hero h1 {
  color: #FFF;
}
.hero p {
  color: #F6B109;
  font-size: 1.14rem;
  margin-bottom: 20px;
  font-weight: 500;
}
.hero .cta-btn {
  margin-left: 0;
  background: #F6B109;
  color: #184D63;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #FFF;
  color: #184D63;
}
@media (max-width: 650px) {
  .hero {
    min-height: 160px;
    padding: 34px 7px;
    margin-bottom: 34px;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
}

/* LISTS ----------------------- */
ul {
  list-style: none;
  margin: 0 0 8px 0;
}
ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 9px;
}
ul li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 12px;
  width: 10px; height: 10px;
  background: #F6B109;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* CONTACT INFO & SOCIAL ------- */
.contact-info {
  margin-bottom: 10px;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 5px;
  font-size: 1rem;
  color: #184D63;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.contact-info img {
  width: 19px;
  height: 19px;
  margin-right: 7px;
}
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 6px;
}
.social-links a img {
  width: 38px;
  height: 38px;
  transition: opacity 0.16s, transform 0.17s;
  opacity: 0.85;
}
.social-links a:hover img, .social-links a:focus img {
  opacity: 1 !important;
  transform: scale(1.07);
}

/* FOOTER ---------------------- */
footer {
  width: 100%;
  background: #FFF;
  box-shadow: 0 -2px 20px rgba(24,77,99,0.04);
  padding: 32px 0 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.footer-menu {
  display: flex;
  gap: 34px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-menu a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 7px;
  color: #184D63;
  padding: 6px 11px;
  transition: background 0.13s, color 0.13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #F6B109;
  color: #184D63;
}
.brand-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.brand-info img {
  width: 44px;
  height: 44px;
  margin-bottom: 7px;
  opacity: 0.98;
}
.brand-info p {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  color: #8796A3;
  margin: 0;
  letter-spacing: 0.01em;
}

@media (max-width: 700px) {
  .footer-menu {
    gap: 13px;
    font-size: 0.97rem;
    justify-content: center;
  }
}

/* BUTTONS & LINKS ------------ */
button, .cta-btn {
  transition: background 0.18s cubic-bezier(0.33,1,0.68,1), color 0.14s cubic-bezier(0.33,1,0.68,1), box-shadow 0.17s;
}
button:active, .cta-btn:active {
  opacity: 0.94;
}

/* MODAL/COOKIE BANNER STYLES -- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #184D63;
  color: #FFF;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: center;
  gap: 22px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 22px 16px 16px 16px;
  box-shadow: 0 -4px 40px rgba(24,77,99,0.13);
  z-index: 3000;
  opacity: 1;
  transition: opacity 0.23s, transform 0.20s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner__text {
  flex: 1 1 0;
  font-size: 1rem;
  color: #FFF;
}
.cookie-banner__actions {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  background: #F6B109;
  color: #184D63;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.14s, box-shadow 0.15s;
  box-shadow: 0 2px 6px rgba(246,177,9,0.09);
}
.cookie-btn.reject {
  background: #FFF;
  color: #184D63;
  border: 1px solid #E3E7EB;
}
.cookie-btn.settings {
  background: #184D63;
  color: #FFF;
  border: 1px solid #F6B109;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #184D63;
  color: #F6B109;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F6B109;
  color: #184D63;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F6B109;
  color: #184D63;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    font-size: 0.98rem;
    padding: 18px 6px 10px 6px;
    align-items: flex-start;
  }
  .cookie-banner__actions {
    gap: 7px;
    width: 100%;
    flex-wrap: wrap;
  }
  .cookie-btn {
    padding: 8px 12px;
    font-size: 0.97rem;
  }
}

/* COOKIE MODAL ---------------- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  z-index: 3500;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24,77,99,0.20);
  /* Smooth fade-in */
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.21s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 16px 56px rgba(24,77,99,0.11);
  padding: 36px 34px 28px 34px;
  max-width: 95vw;
  min-width: 320px;
  width: 410px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  margin: 0 8px;
}
.cookie-modal-content h3 {
  font-size: 1.38rem;
  margin-bottom: 9px;
  color: #184D63;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  width: 100%;
}
.cookie-category:last-child {
  margin-bottom: 0;
}
.cookie-category-label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #184D63;
  flex: 1 1 0;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
}
.toggle-switch input {
  opacity: 0; width: 0; height: 0;
}
.toggle-slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E2E7EC;
  border-radius: 18px;
  transition: background 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: #F6B109;
}
.toggle-slider:before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 20px; height: 20px;
  background: #FFF;
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 1px 5px rgba(24,77,99,0.08);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(18px);
  background: #184D63;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 9px; right: 19px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #184D63;
  cursor: pointer;
  padding: 7px 11px;
  border-radius: 8px;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F6B109;
  color: #184D63;
}
@media (max-width:500px) {
  .cookie-modal-content {
    padding: 18px 8px 12px 8px;
    width: 98vw;
    min-width: unset;
  }
}

/* GENERAL RESPONSIVENESS ------ */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
    padding: 0 7px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.34rem; }
  h2 { font-size: 1.14rem; }
  .section, section { padding: 20px 7px; }
}

/* MISC UI ELEMENTS ------------- */
::-webkit-scrollbar { width: 7px; background: #F8F9FB; }
::-webkit-scrollbar-thumb { background: #E2E7EC; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #F6B109; }

/* Micro-interactions */
.card, .testimonial-card, .cookie-btn, .cta-btn {
  transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(246,177,9,0.07);
  transform: translateY(-3px) scale(1.015);
}

/* Hide visually but keep for accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Utility classes for spacing */
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-20 { margin-top: 20px !important; }
.pt-20 { padding-top: 20px !important; }

/* Hide main nav on mobile & ensure burger on right */
@media (max-width: 900px) {
  header {
    justify-content: space-between;
  }
  .logo-header {
    padding: 10px 8px 10px 8px;
  }
}

/* Ensure no element overlaps - always flex, never position absolute (unless modal/close/buttons) */
/* The only absolute positions are inside cookie-modal and burger-close. No grid used. */
