/* ---------------- 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F7FA;
  color: #193C85;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #193C85;
  text-decoration: none;
  transition: color .2s;
}
ul, ol {
  padding-left: 1.6em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
/* Scrollbar for fun! */
::-webkit-scrollbar {
  width: 8px;
  background: #43AA8B33;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: #193C8599;
  border-radius: 4px;
}

/* ---------------- BRANDING & TYPOGRAPHY ------------------ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #193C85;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -2px;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-shadow: 1px 3px 0 #43AA8B33;
  animation: float 2.5s infinite alternate ease-in-out;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 800;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
}
p, li, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  color: #294E92;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: #43AA8B;
}
.cta-btn, .cta-btn:visited {
  display: inline-block;
  background: #43AA8B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9em 2.2em 0.9em 2.2em;
  border-radius: 32px;
  box-shadow: 0 3px 16px #43AA8B26;
  margin-top: 18px;
  transition: background .25s, transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
}
.cta-btn::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.8);
  width: 120%;
  height: 120%;
  border-radius: 32px;
  opacity: 0;
  background: #E6FAF5;
  z-index: 1;
  transition: opacity .4s, transform .2s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #193C85;
  color: #fff;
  transform: translateY(-2px) scale(1.05) rotate(-2deg);
  box-shadow:0 5px 24px #43AA8B66;
  outline: none;
}
.cta-btn:hover::after, .cta-btn:focus::after {
  opacity: 0.1;
  transform: translate(-50%,-50%) scale(1.08);
}

/* ------------------- HEADER & NAVIGATION -------------------- */
header {
  background: #fff;
  box-shadow: 0 3px 12px #193C8514;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 20px;
  max-width: 1120px;
  margin: 0 auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
header nav a {
  color: #193C85;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .3px;
  padding: 6px 14px;
  border-radius: 18px;
  transition: background .18s, color .18s, transform .18s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  background: #43AA8B22;
  color: #43AA8B;
  transform: scale(1.04) rotate(-3deg);
  outline: none;
}
header nav .cta-btn {
  margin-left: 12px;
}
.mobile-menu-toggle {
  display: none;
  background: #43AA8B;
  border: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin-left: 14px;
  cursor: pointer;
  z-index: 41;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #193C85;
  color: #fff;
  box-shadow: 0 0 0 4px #43AA8B33;
}

/* ----------- MOBILE MENU ------------ */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #193C85f2;
  transition: transform .4s cubic-bezier(.41,1.23,.56,1);
  transform: translateX(105%);
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 40px;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #43AA8B;
  border: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  cursor: pointer;
  z-index: 9999;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F5F7FA;
  color: #43AA8B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 80px 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .5px;
  padding: 10px 12px;
  border-radius: 20px;
  transition: background .18s, color .18s, transform .15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #43AA8Bdd;
  color: #193C85;
  transform: scale(1.07) rotate(-2deg);
}

/* ------------- MAIN CONTAINER & SECTIONS ------------------- */
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 14px;
}
main {
  width: 100%;
  min-height: 60vh;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 32px #193C8512;
  padding: 28px 22px;
  margin-bottom: 20px;
  transition: box-shadow .18s;
}
.content-wrapper.text-section {
  background: #EAF8F6;
  box-shadow: 0 2px 16px #43AA8B10;
}
.text-section {
  margin-bottom: 24px;
}
.text-section ul, .text-section ol {
  margin-bottom: 14px;
}

/* ------------- HERO SECTION ------------- */
.hero {
  background: linear-gradient(90deg, #43AA8B11 0%, #ffffff 100%);
  padding: 50px 0 55px 0;
  position: relative;
  box-shadow: 0 12px 36px #43AA8B11;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  background: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
}
.hero h1 {
  font-size: 2.4rem;
  color: #193C85;
  margin-bottom: 14px;
  line-height: 1.14;
}
.hero p {
  font-size: 1.1rem;
  color: #294E92;
}

/* ------------- FLEXBOX LAYOUT PATTERNS ------------- */
.card-container,
.card-grid,
.feature-grid,
.content-grid,
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card,
.feature-item {
  margin-bottom: 20px;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 42px #43AA8B19, 0 1.5px 8px #193C8533;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 420px;
  width: 100%;
  transition: transform .22s, box-shadow .22s;
  border-left: 8px solid #43AA8B;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #294E92;
}
.testimonial-card span {
  font-size: 1rem;
  color: #193C85;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: -12px;
}
.testimonial-card:hover {
  transform: scale(1.03) rotate(-1.5deg);
  box-shadow: 0 12px 48px #43AA8B33, 0 4px 26px #193C8533;
  border-left: 10px solid #193C85;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* -------- FEATURE-CARDS AND GRID-ICONS -------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.feature-grid > div {
  flex: 1 1 210px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 12px #43AA8B0e;
  padding: 26px 18px 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 171px;
  max-width: 245px;
  transition: transform .20s, box-shadow .20s;
  position: relative;
}
.feature-grid > div img {
  width: 62px;
  height: 62px;
  margin-bottom: 11px;
  filter: drop-shadow(2px 3px 0 #43AA8B22);
  animation: float 2.6s infinite alternate-reverse;
}
.feature-grid > div:hover {
  transform: scale(1.045) rotate(-2deg);
  box-shadow: 0 9px 38px #43AA8B33, 0 6px 26px #193C8518;
}
.feature-grid h3 {
  color: #43AA8B;
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 900;
  text-align: center;
}

/* ------------- TABLES ------------- */
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin: 18px 0 24px 0;
}
th, td {
  text-align: left;
  padding: 14px 18px;
  font-size: 1rem;
}
th {
  background: #43AA8B11;
  color: #193C85;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
}
td {
  border-bottom: 1px solid #EAF8F6;
}
tr:last-child td {
  border-bottom: none;
}

/* ------------- FAQ - Accordion Styles ------------- */
.faq-accordion > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px #43AA8B20;
  margin-bottom: 19px;
  padding: 17px 22px;
  transition: box-shadow .17s, transform .14s;
  cursor: pointer;
  position: relative;
}
.faq-accordion > div:hover {
  box-shadow: 0 7px 21px #43AA8B33, 0 2px 12px #193C8520;
  transform: scale(1.025);
}
.faq-accordion h3 {
  color: #193C85;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-accordion p {
  font-size: .99rem;
}

/* ------------- CONTACT INFO BLOCKS --------------- */
.contact-info {
  background: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #193C85;
  margin-bottom: 0px;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-info img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.map {
  margin: 22px 0 14px 0;
  text-align: center;
}
.hours {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #43AA8B;
}
.hours img {
  width: 22px;
  height: 22px;
}

/* -------------------- FOOTER ---------------------- */
footer {
  background: #193C85;
  color: #fff;
  margin-top: 40px;
}
footer p {
  color: white;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 8px;
}
footer nav {
  margin: 8px 0 0 0;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  opacity: .93;
  border-bottom: 2px solid #43AA8B11;
  padding: 2px 6px;
  border-radius: 4px;
  margin: 0 7px;
  transition: background .15s, color .12s;
}
footer nav a:hover,
footer nav a:focus {
  background: #43AA8B44;
  color: #43AA8B;
  outline: none;
}
footer img {
  width: 56px;
  height: 56px;
}
footer p {
  font-size: .97rem;
  opacity: .83;
  margin-top: 9px;
}

/* --------------- COOKIE CONSENT BANNER & MODAL --------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  background: #fff;
  color: #193C85;
  box-shadow: 0 -7px 40px #43AA8B22;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 26px 34px 20px 24px;
  animation: slideUp .7s cubic-bezier(.6,1.2,.5,1.12);
}
.cookie-banner p {
  flex: 2;
  font-family: 'Roboto', Arial, sans-serif;
  color: #294E92;
  font-size: 1rem;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  font-weight: 700;
  border-radius: 20px;
  border: none;
  background: #43AA8B;
  color: #fff;
  padding: 8px 22px;
  margin: 0;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .15s;
  box-shadow: 0 1px 7px #43AA8B1f;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #193C85;
  color: #fff;
}
.cookie-banner button.settings {
  background: #F5F7FA;
  color: #193C85;
  border: 1.5px solid #43AA8B;
}
.cookie-banner button.settings:hover {
  background: #43AA8B;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,60,133,0.55);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
}
.cookie-modal-content {
  background: #fff;
  padding: 42px 28px 32px;
  border-radius: 30px;
  box-shadow: 0 4px 44px #43AA8B33;
  max-width: 445px;
  width: 94vw;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-content h3 {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #193C85;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 1.04rem;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #43AA8B;
  border-radius: 6px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 17px;
  font-size: 2rem;
  background: #43AA8B;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: background .18s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: #F5F7FA;
  color: #43AA8B;
}
.cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 17px;
}
.cookie-modal-actions button {
  flex: 1;
  border-radius: 21px;
  padding: 8px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
@keyframes slideUp {
  from {transform: translateY(128px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

/* ----------------- ANIMATIONS --------------------- */
@keyframes float {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-8px) scale(1.025); }
}

/* ---------------- MEDIA QUERIES: RESPONSIVE -------------- */
@media (max-width: 1020px){
  .container { max-width: 98vw; }
}
@media (max-width: 880px){
  .feature-grid { gap: 16px; }
  .card-container, .content-grid { gap: 14px; }
  .testimonial-card { min-width: 180px; max-width: 99vw; }
}
@media (max-width: 768px){
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .content-grid, .card-container, .features {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .content-wrapper, .content-wrapper.text-section {
    padding: 14px 9px;
  }
  .section {
    padding: 25px 6px;
  }
  .hero {
    padding: 30px 0 36px 0;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 16px 7px;
  }
}
@media (max-width: 550px) {
  body { font-size: 0.98rem; }
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1.04rem; }
  .hero h1 { font-size: 1.4rem; }
  .cookie-banner {
    flex-direction: column;
    padding: 20px 10px 19px 10px;
    gap: 15px;
  }
  .cookie-modal-content {
    padding: 25px 8px 16px;
  }
}

/* -------------- UTILITIES -------------- */
::-moz-selection { background: #43AA8B33; color: #193C85; }
::selection { background: #43AA8B33; color: #193C85; }

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* ------------- MISCELLANEOUS ------------- */
ol {
  list-style: decimal inside;
  margin-bottom: 1.2em;
  margin-top: .5em;
}

/* --------------- SPACING - CRITICAL CONSISTENCY -------------- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* -------------- FORM STYLES (if any forms used) ------------- */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
}
input[type=text],input[type=email],input[type=tel],textarea {
  padding: 11px 16px;
  border-radius: 12px;
  border: 1.5px solid #43AA8B44;
  width: 100%;
  background: #F5F7FA;
  margin-bottom: 14px;
  transition: border .15s, background .13s;
}
input:focus, textarea:focus {
  border: 1.5px solid #43AA8B;
  background: #EAF8F6;
  outline: none;
}
button {
  transition: background .18s, color .18s, transform .13s;
  cursor: pointer;
}

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