/* CSS 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,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.55;
  font-size: 16px;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
}
img { display: block; max-width: 100%; height: auto; }
a { color: #194366; text-decoration: none; transition: color 0.18s; }
a:hover,a:focus { color: #22A699; outline: none; }
ul, ol { padding-left: 1.2em; margin-bottom: 24px; }
li { margin-bottom: 10px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #194366;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 16px; }
h3 { font-size: 1.3rem; line-height: 1.25; }
h4 { font-size: 1.1rem; line-height: 1.2; }
p { margin-bottom: 16px; }
strong, b { font-weight: bold; }
em, i { font-style: italic; }

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  margin-bottom: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(25,67,102,.04);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(25,67,102,0.06);
  flex: 1 1 320px;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 24px 20px 24px;
  margin-bottom: 20px;
  background: #F7F6EE;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(25,67,102,0.07);
  max-width: 470px;
  font-size: 1.07rem;
  color: #222;
}
.testimonial-meta {
  font-size: 1rem;
  color: #194366;
  font-weight: 500;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* Header & Navigation */
header {
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 18px 0;
  box-shadow: 0 2px 10px rgba(25,67,102,0.025);
  position: relative;
  z-index: 10;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  color: #194366;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F7F6EE;
  color: #22A699;
}
.cta-primary {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  padding: 9px 18px;
  background: #22A699;
  color: #fff !important;
  border-radius: 8px;
  margin-left: 8px;
  border: none;
  box-shadow: 0 2px 10px rgba(34,166,153,0.07);
  transition: background 0.15s, box-shadow 0.17s, color 0.12s;
}
.cta-primary:hover,.cta-primary:focus {
  background: #194366;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(25,67,102,0.07);
}
.cta-secondary {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 500;
  padding: 8px 16px;
  background: transparent;
  border: 2px solid #22A699;
  color: #22A699;
  border-radius: 8px;
  margin-left: 0;
  transition: background 0.15s, color 0.14s, border 0.18s;
}
.cta-secondary:hover,.cta-secondary:focus {
  background: #22A699;
  color: #fff;
  border-color: #22A699;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #194366;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  z-index: 1080;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F7F6EE;
  border-radius: 6px;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.58,.01,.98,.5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  margin: 24px 24px 12px 24px;
  font-size: 2.1rem;
  background: transparent;
  border: none;
  color: #22A699;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover {
  color: #194366;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 12px 36px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #194366;
  padding: 12px 4px 12px 4px;
  border-radius: 7px;
  background: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7F6EE;
  color: #22A699;
}

/* Hero Section */
.hero {
  background: #F7F6EE;
  padding: 60px 0 60px 0;
  margin-bottom: 60px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 7px 32px rgba(25,67,102,0.08);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  color: #194366;
  margin-bottom: 14px;
  font-size: 2.3rem;
}
.hero p {
  color: #222;
  margin-bottom: 18px;
  max-width: 620px;
}

/* Features Section */
.features {
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 260px;
  background: #fff;
  padding: 28px 20px 24px 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(25,67,102,.06);
  transition: box-shadow 0.14s, transform 0.16s;
}
.feature:hover {
  box-shadow: 0 8px 24px rgba(34,166,153,0.09);
  transform: translateY(-3px) scale(1.025);
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}

/* FAQ Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  border: 1px solid #F7F6EE;
  border-radius: 12px;
  padding: 18px 22px;
  background: #fff;
  box-shadow: 0 1.5px 8px rgba(25,67,102,.03);
}
.faq-item h3 { font-size: 1.08rem; color: #22A699; margin-bottom: 5px; }
.faq-item p { margin-bottom: 0; }


/* Contact & Address Styles */
.contact ul {
  list-style: none;
  padding-left: 0;
}
.contact ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1.08rem;
  color: #194366;
}
.contact ul img {
  width: 22px;
  height: 22px;
  margin-right: 3px;
  opacity: 0.78;
}

/* Footer Styles */
footer {
  background: #fff;
  padding: 38px 0 24px 0;
  border-top: 1px solid #F7F6EE;
}
.footer-main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.21rem;
  color: #194366;
  font-weight: 700;
}
.footer-brand img {
  width: 38px;
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: #194366;
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.14s, opacity 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #22A699;
  opacity: 1;
}
footer address {
  font-style: normal;
  color: #222;
  font-size: 0.97rem;
  opacity: 0.92;
  margin-top: 10px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid #F7F6EE;
  box-shadow: 0 -4px 19px rgba(25,67,102,0.06);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1400;
  transition: transform 0.35s;
}
.cookie-banner.hide {
  transform: translateY(150%); pointer-events: none; opacity: 0;
}
.cookie-banner__text {
  font-size: 1.04rem;
  color: #222;
  text-align: center;
  max-width: 460px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
  align-items: center;
  justify-content: center;
}
.cookie-btn {
  font-family: 'Montserrat',Arial,sans-serif;
  border: none;
  border-radius: 7px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  background: #F7F6EE;
  color: #194366;
  cursor: pointer;
  transition: background 0.12s, color 0.14s, box-shadow 0.18s;
}
.cookie-btn--accept {
  background: #22A699;
  color: #fff;
}
.cookie-btn--accept:hover, .cookie-btn--accept:focus {
  background: #194366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(25,67,102,0.09);
}
.cookie-btn--reject {
  background: #fff;
  color: #22A699;
  border: 1.5px solid #22A699;
}
.cookie-btn--reject:hover,.cookie-btn--reject:focus {
  background: #22A699;
  color: #fff;
}
.cookie-btn--settings {
  background: #F7F6EE;
  color: #194366;
  border: 1.5px solid #F7F6EE;
}
.cookie-btn--settings:hover,.cookie-btn--settings:focus {
  background: #194366;
  color: #fff;
  border-color: #194366;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom:0;
  background: rgba(25,67,102,0.27);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1430;
  opacity: 1;
  pointer-events: all;
  animation: fadeInModal 0.28s ease;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(25,67,102,0.09);
  padding: 32px 26px 20px 26px;
  max-width: 370px;
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cookie-modal__header h2 {
  color: #194366; font-size: 1.25rem; margin-bottom: 0;
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #22A699;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.13s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus { color: #194366; }
.cookie-modal__body {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 15px;
  font-size: 1.06rem;
}
.cookie-category__label {
  font-weight: 500;
  color: #194366;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #F7F6EE;
  border-radius: 11px;
  position: relative;
  outline: none;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-toggle:checked {
  background: #22A699;
}
.cookie-toggle:after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: left 0.15s cubic-bezier(.7,0,.41,1);
  box-shadow: 0 1.5px 5px rgba(25,67,102,0.13);
}
.cookie-toggle:checked:after {
  left: 18px;
}
.cookie-category__desc {
  color: #444; font-size: 0.98rem;
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-category.essential .cookie-category__label {
  color: #A8A8A8;
}

.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}

/* Microinteractions, Transition, Shadows */
button, .cta-primary, .cta-secondary, .cookie-btn {
  cursor: pointer;
  transition: background 0.15s, color 0.12s, box-shadow 0.14s, border 0.13s, transform 0.12s;
}
button:active,.cta-primary:active, .cta-secondary:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* Responsive & Flex Patterns */
@media (max-width: 1200px) {
  .container,
  .footer-main { max-width: 96vw; }
}
@media (max-width: 900px) {
  .container,
  .footer-main { max-width: 99vw; }
  .footer-main { flex-direction: column; gap: 22px; align-items: flex-start; }
}
@media (max-width: 760px) {
  header { flex-direction: row; padding: 13px 0; }
  .footer-main, .container { padding: 0 10px; }
  .section { padding: 28px 6px; margin-bottom: 44px; }
  .card { padding: 18px 10px; }
  .hero { padding: 34px 0 40px 0; border-radius: 0 0 16px 16px; }
  .feature { padding: 20px 10px 14px 10px; }
  .testimonial-card { padding: 16px 10px 12px 10px; }
  .cookie-banner { padding: 13px 5px; }
  .cookie-modal__dialog { padding: 20px 7px 16px 7px; }
}
@media (max-width: 820px) {
  .feature-grid { gap: 16px; }
}
@media (max-width: 700px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .footer-main { flex-direction: column; gap: 20px; }
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .features h2 { font-size: 1.42rem; }
  .testimonial-card { max-width: 100%; }
}
@media (max-width: 768px) {
  .content-wrapper, .content-grid, .footer-main, .text-image-section { flex-direction: column; gap: 20px; align-items: stretch; }
  .text-image-section { flex-direction: column; gap: 22px; }
}
@media (max-width: 420px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.15rem; }
  .hero h1 { font-size: 1.13rem; }
}

/* Utility Classes */
.d-none { display: none!important; }
.mt-2 { margin-top: 8px!important; }
.mb-2 { margin-bottom: 8px!important; }
.mb-4 { margin-bottom: 24px!important; }
.mt-4 { margin-top: 24px!important; }
.gap-2 { gap: 8px!important; }
.gap-3 { gap: 12px!important; }

/* Remove outline from images/links when clicked by mouse, keep for keyboard users */
a:focus:focus-visible, button:focus:focus-visible { outline: 2px solid #22A699; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }

/* Hide scrollbar for mobile menu on iOS */
.mobile-menu { -webkit-overflow-scrolling: touch; overflow-y: auto; }

/* Accessibility: high contrast for testimonials/reviews */
.testimonials, .testimonial-card, .testimonial-meta {
  background: none;
  color: #222;
}

/* Remove number spinner in number inputs */
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{
  -webkit-appearance:none;margin:0;
}

/* Remove blue highlight on iOS */
input, textarea, button, select,
a { -webkit-tap-highlight-color: transparent; }
