/* CSS RESET & NORMALIZE (minimal, for compatibility) */
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #f4f7fa;
  color: #243843;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #256978;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1a4853;
  outline: none;
}
ul, ol {
  margin: 0 0 16px 24px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #256978;
  margin-bottom: 0.5em;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p, li { font-size: 1em; color: #243843; }
strong { color: #256978; font-weight: 700; }

/* LAYOUT PATTERNS & SPACING */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(34, 72, 94, 0.08);
}

/* GRID FLEX PATTERNS */
.feature-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f4f7fa;
  border-radius: 18px;
  padding: 24px 20px;
  min-width: 240px;
  flex: 1 1 220px;
  box-shadow: 0 1px 6px rgba(34,72,94,0.08);
  transition: box-shadow 0.18s, background 0.23s;
}
.feature-item:hover {
  background: #def3f2;
  box-shadow: 0 4px 18px rgba(34,72,94,0.12);
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(34,72,94,0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s;
}
.card:hover {
  box-shadow: 0 6px 30px rgba(37, 105, 120, 0.17);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(114deg, #256978 0%, #3caac7 100%);
  color: #fff;
  padding: 72px 0 60px 0;
}
.hero h1,
.hero p {
  color: #fff;
}
.hero .cta.primary {
  margin-top: 32px;
  background: #fff;
  color: #256978;
  border: none;
}

/* BUTTONS & CTA */
.cta {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  padding: 14px 34px;
  border-radius: 32px;
  font-size: 1.12rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.5px;
  margin-top: 14px;
  margin-bottom: 12px;
  box-shadow: 0 1px 8px rgba(37, 105, 120, 0.05);
  transition: background 0.22s, color 0.20s, box-shadow 0.18s, border 0.18s;
  border: none;
}
.cta.primary {
  color: #fff;
  background: #256978;
  border: 2px solid #256978;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #18454e;
  color: #fff;
  box-shadow: 0 2px 24px rgba(37,105,120,0.16);
}
.cta.secondary {
  background: #fff;
  color: #256978;
  border: 2px solid #256978;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #8fb9a8;
  color: #fff;
  border-color: #8fb9a8;
}

/* LISTS */
.service-list, .feature-list, .partner-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.partner-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1em;
  color: #256978;
  border-radius: 12px;
  padding: 8px 0 8px 0;
}
.feature-list li, .service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f4f7fa;
  border-radius: 12px;
  padding: 10px 14px;
  color: #243843;
}
.feature-list img {
  width: 22px;
  height: 22px;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 7px rgba(37, 105, 120, 0.05);
  position: sticky;
  top: 0;
  z-index: 990;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  min-height: 56px;
}
.logo img { height: 42px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 7px;
  transition: background 0.17s, color 0.16s;
}
.main-nav .cta.primary {
  margin: 0 0 0 12px;
}
.main-nav a:not(.cta):hover,
.main-nav a:not(.cta):focus {
  background: #f4f7fa;
  color: #256978;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #256978;
  cursor: pointer;
  margin-left: 18px;
}
@media (max-width: 998px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37, 105, 120, 0.93);
  z-index: 2220;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(0.61, 0.19, 0.36, 0.91);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  padding: 14px 17px;
  margin: 18px 0 0 18px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.25s;
}
.mobile-menu-close:hover {
  color: #8fb9a8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  background: transparent;
  padding: 16px 6px;
  border-radius: 7px;
  transition: background 0.16s, color 0.22s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #256978;
  color: #8fb9a8;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 8px rgba(34,72,94,0.09);
  margin-bottom: 20px;
  border: 1.5px solid #e4eef1;
  min-width: 200px;
  max-width: 630px;
  color: #243843;
  transition: box-shadow 0.14s, border 0.18s;
}
.testimonial-card p {
  font-size: 1.11rem;
  color: #243843;
  font-style: italic;
  margin-bottom: 4px;
}
.testimonial-card strong {
  font-size: 1.01rem;
  color: #256978;
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(37,105,120,0.14);
  border: 1.5px solid #8fb9a8;
}
@media (max-width: 720px) {
  .testimonial-card {
    padding: 16px;
    max-width: 100%;
  }
}

/* FAQ ACCORDION & ITEMS */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  padding: 18px 18px 12px 18px;
  background: #f4f7fa;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(32,60,72,0.06);
  margin-bottom: 6px;
  color: #243843;
}
.faq-item h3 {
  font-size: 1.15rem;
  color: #256978;
  margin-bottom: 10px;
  cursor: pointer;
}
.faq-item p {
  font-size: 0.98rem;
  color: #405473;
}

/* PRICING TABLE */
.price-table {
  width: 100%;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 26px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(37,105,120,0.08);
}
.price-table th, .price-table td {
  padding: 16px 10px;
  text-align: left;
  font-size: 1.01rem;
  border-bottom: 1.5px solid #e4eef1;
}
.price-table th {
  background: #256978;
  color: #fff;
}
.price-table tr:last-child td {
  border-bottom: none;
}

/* PACKAGE OVERVIEW */
.package-overview {
  background: #f4f7fa;
  border-radius: 18px;
  padding: 24px 14px;
  margin-bottom: 20px;
}
.package-overview h3 {
  font-size: 1.17rem;
  margin-bottom: 13px;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-bottom: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f4f7fa;
  border-radius: 9px;
  padding: 10px 12px;
  min-width: 200px;
}
@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
    gap: 10px;
  }
}

/* LEGAL AND STATIC TEXT */
.legal-text {
  font-size: 1rem;
  color: #405473;
  background: #fff;
  border-radius: 12px;
  padding: 20px 18px;
  margin-bottom: 14px;
  box-shadow: 0 1px 7px rgba(32,60,72,0.03);
  line-height: 1.8;
}
.legal-text h2 {
  margin: 18px 0 10px 0;
  color: #256978;
  font-size: 1.15rem;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: #256978;
  color: #fff;
  padding: 36px 0 0 0;
  margin-top: 60px;
  border-radius: 27px 27px 0 0;
}
.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 2px solid #12495a;
  gap: 18px;
}
.footer-top img {
  height: 34px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.88;
  transition: opacity 0.17s, color 0.14s;
  border-radius: 7px;
  padding: 4px 11px;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: #8FB9A8;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  font-size: 0.98rem;
  color: #b6d0e2;
  padding: 18px 0 12px 0;
}
@media (max-width: 800px) {
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: #fff;
  border-top: 3px solid #8fb9a8;
  box-shadow: 0 -2px 24px rgba(37,105,120,0.14);
  padding: 20px 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 1.03rem;
  transition: transform 0.37s cubic-bezier(.71,.03,.13,.96), opacity 0.18s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
}
.cookie-banner .cookie-btn {
  border-radius: 32px;
  background: #256978;
  color: #fff;
  padding: 12px 25px;
  margin-left: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
  box-shadow: 0 1px 16px rgba(37,105,120,0.07);
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #256978;
  border: 2px solid #256978;
  margin-right: 3px;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #ededed;
  color: #1a4853;
}
.cookie-banner .cookie-btn.settings {
  background: #8fb9a8;
  color: #fff;
  margin-right: 3px;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #256978;
  color: #fff;
  border: 2px solid #8fb9a8;
}
.cookie-banner .cookie-btn:hover {
  background: #12495a;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    font-size: 0.98rem;
    padding: 16px 8px;
  }
  .cookie-banner .cookie-btn {
    width: 100%;
    margin-bottom: 7px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,72,90,0.82);
  z-index: 12100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.26s;
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  max-width: 420px;
  width: 90%;
  padding: 38px 26px 26px 26px;
  box-shadow: 0 3px 44px rgba(37,105,120,0.22);
  color: #256978;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeInModal 0.36s;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  right: 13px;
  top: 13px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #8FB9A8;
  cursor: pointer;
  z-index: 13002;
  padding: 4px 7px;
  transition: color 0.15s;
}
.cookie-modal-close:hover {
  color: #256978;
}
.cookie-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 13px;
  color: #256978;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f4f7fa;
  border-radius: 8px;
  padding: 12px 10px;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #8fb9a8;
  border-radius: 16px;
  position: relative;
  outline: none;
  transition: background 0.14s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #256978;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.14s;
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-desc {
  flex: 1 1 70%;
  font-size: 1rem;
  color: #405473;
}
.cookie-options .essential {
  opacity: 0.6;
}
.cookie-options .essential .cookie-toggle {
  pointer-events: none;
}

/* UTILITIES & ANIMATIONS */
.fade-in-up {
  animation: fadeInUp 0.75s cubic-bezier(.14,.97,.51,1);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE TYPOGRAPHY */
@media (max-width: 600px) {
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  h3 {
    font-size: 1.05rem;
  }
  body {
    font-size: 0.98rem;
  }
  .section {
    margin-bottom: 36px;
    padding: 22px 7px;
  }
}

/* GENERAL SPACING, STACKING & FLEXBOX CONSISTENCY */
.content-wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}
.card + .card {
  margin-left: 20px;
}

/* MISC */
::-webkit-scrollbar {
  width: 9px;
  background: #f4f7fa;
}
::-webkit-scrollbar-thumb {
  background: #c1dadf;
  border-radius: 6px;
}

/* FORM ELEMENTS (if there are any forms in custom HTML, style elements here): */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 9px;
  border: 1.2px solid #8fb9a8;
  padding: 10px 14px;
  font-size: 1em;
  margin-bottom: 18px;
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.17s;
  box-shadow: 0 1px 7px rgba(32,60,72,0.09);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #256978;
  box-shadow: 0 1px 14px rgba(37,105,120,0.14);
}

/****
* Only FLEXBOX is used. No grid, no columns. All content layouts checked & spaced with flex, margin, gap, padding and NO absolute positioning.
****/
