/*--- CSS RESET & NORMALIZATION ---*/
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 {
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.65;
  min-height: 100vh;
  background: #03131E;
  color: #FFFFFF;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}
a {
  color: #52B788;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #65e1c2;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1em;
}
li + li {
  margin-top: 0.5em;
}
/*--- TYPOGRAPHY ---*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #FFF;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, ul, ol {
  margin-bottom: 18px;
  font-size: 1rem;
}
strong {
  color: #52B788;
}
blockquote {
  font-style: italic;
  color: #065D8C;
  background: #0B2031;
  border-left: 4px solid #52B788;
  margin: 0 0 10px 0;
  padding: 16px 22px;
  font-size: 1.08rem;
}
cite {
  display: block;
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  margin-top: 6px;
  font-style: normal;
}
/*--- LAYOUT CONTAINERS AND SPACING ---*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  max-width: 720px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: none;
  position: relative;
  z-index: 1;
}
/*--- CARD LAYOUTS AND FLEX SPACING ---*/
.card-container, .feature-grid, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.card, .feature-card {
  background: #0B2031;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(6,93,140,0.2);
  border: 1.5px solid #065D8C;
  padding: 28px 20px;
  flex: 1 1 270px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.27s, border 0.3s, transform 0.19s;
  position: relative;
}
.card:hover, .feature-card:hover {
  box-shadow: 0 8px 32px 0 rgba(82,183,136,0.25), 0 0 0 2px #52B788;
  transform: translateY(-4px) scale(1.025);
  border-color: #52B788;
  z-index: 2;
}
.feature-card img {
  margin-bottom: 16px;
  width: 46px;
  filter: drop-shadow(0 2px 10px #065D8C33);
}
.feature-card h3 {
  color: #52B788;
  margin-bottom: 10px;
  font-weight: 600;
}
/*--- FLEXIBLE CONTENT FOR TEXT + IMAGE SECTIONS ---*/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F8F9FA;
  color: #0B2031;
  border-radius: 14px;
  min-width: 0;
  margin-bottom: 20px;
  box-shadow: 0 2px 20px 0 rgba(6,93,140,0.06);
  position: relative;
  flex-direction: column;
}
.testimonial-card blockquote {
  color: #065D8C;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0 0 0 0;
  font-size: 1.13rem;
  line-height: 1.45;
}
.testimonial-card cite {
  color: #065D8C;
  margin-top: 14px;
  font-weight: 600;
}
/*--- FEATURE ITEM LAYOUT ---*/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/*--- HEADER, LOGO & NAVIGATION ---*/
header {
  width: 100%;
  background: #021b2a;
  box-shadow: 0 5px 32px rgba(6,93,140,0.07);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 66px;
  padding: 0 0.5vw;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 30px;
  height: 54px;
}
.logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 12px #065D8C55);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: auto;
  margin-left: 12px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #AEDAF6;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 7px;
  position: relative;
  transition: background 0.2s, color 0.18s;
  font-weight: 500;
}
.main-nav a:hover, .main-nav a:focus {
  background: #052c47;
  color: #52B788;
}
.cta-btn {
  background: linear-gradient(90deg, #065D8C 0%, #52B788 100%);
  color: #fff;
  border: 0;
  border-radius: 42px;
  padding: 12px 30px;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 16px 0 rgba(6,93,140,0.10);
  margin-left: 28px;
  margin-right: 14px;
  transition: background 0.22s, transform 0.17s, color 0.19s;
  cursor: pointer;
  letter-spacing: 0.01em;
  outline: none;
  text-align: center;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #52B788 0%, #065D8C 100%);
  color: #fff;
  transform: scale(1.05);
}
/*--- MOBILE MENU ---*/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #52B788;
  font-size: 2.1rem;
  padding: 7px 14px;
  cursor: pointer;
  z-index: 52;
  transition: color 0.19s, background 0.21s;
  border-radius: 8px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #065D8C;
  background: #1c2c38;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  width: 94vw;
  max-width: 400px;
  height: 100vh;
  background: #021b2a;
  box-shadow: 2px 0 48px 0 rgba(6,93,140,0.19);
  transform: translateX(-104%);
  transition: transform 0.31s cubic-bezier(.71,.08,.3,.91), box-shadow 0.18s;
  z-index: 102;
  padding: 34px 26px 24px 26px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #52B788;
  font-size: 2rem;
  top: 14px;
  right: 16px;
  padding: 4px 10px;
  position: absolute;
  cursor: pointer;
  z-index: 102;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #FFF;
  background: #035c8c;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
}
.mobile-nav a {
  color: #AEDAF6;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-align: left;
  padding: 14px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.13s, font-size 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #035c8c;
  color: #52B788;
  font-size: 1.22rem;
}
/*--- RESPONSIVE NAVIGATION ---*/
@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .cta-btn {
    margin-left: 12px;
    padding: 11px 20px;
    font-size: 0.98rem;
  }
}
@media (max-width: 880px) {
  .main-nav {
    gap: 11px;
  }
  .logo {
    margin-right: 10px;
  }
}
@media (max-width: 840px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta-btn {
    margin-left: 0;
  }
}
@media (max-width: 650px) {
  header {
    min-height: 52px;
    padding: 0 5vw;
  }
}
/*--- SECTIONS, CARDS, BUTTONS, AND FLEXBOX LAYOUTS ---*/
section {
  width: 100%;
  margin: 0 0 60px 0;
  padding: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 600px) {
  .section {
    padding: 22px 4vw;
    margin-bottom: 40px;
  }
  section {
    padding: 22px 0 0 0;
    margin-bottom: 38px;
  }
}
@media (max-width: 750px) {
  .container {
    padding: 0 7px;
  }
}
@media (max-width: 520px) {
  .feature-grid, .card-container, .card-grid, .content-grid {
    gap: 12px;
  }
  .card, .feature-card {
    padding: 17px 11px;
    min-width: 0;
  }
}
/*--- FOOTER ---*/
footer {
  width: 100%;
  background: #021b2a;
  color: #B8D9EA;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  padding: 32px 10px 20px 10px;
  border-top: 3px solid #065D8C;
  margin-top: auto;
  font-size: 15px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #B8D9EA;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 4px 9px;
  border-radius: 3px;
  transition: color 0.19s, background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #035c8c;
  color: #51f7cf;
}
footer p {
  margin: 0;
  font-size: 0.98em;
  color: #aad0e2;
}
/*--- COOKIE BANNER & MODAL ---*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  width: 100vw;
  background: #021b2a;
  color: #B8D9EA;
  padding: 20px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 38px rgba(6,93,140,0.19);
  animation: slideUpBanner 0.7s;
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 13px;
  font-size: 15px;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5px;
}
.cookie-btn,
.cookie-btn-accept, .cookie-btn-settings, .cookie-btn-reject {
  background: #065D8C;
  color: #fff;
  border: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 26px;
  padding: 8px 22px;
  box-shadow: 0 2px 10px 0 rgba(6,93,140,0.10);
  transition: background 0.18s, color 0.17s, transform 0.17s;
  cursor: pointer;
  margin: 3px 0;
}
.cookie-btn-accept {
  background: #52B788;
  color: #0B2031;
  font-weight: 700;
}
.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
  background: #44cb90;
  color: #021b2a;
}
.cookie-btn-settings {
  background: #065D8C;
  color: #fff;
}
.cookie-btn-settings:hover,
.cookie-btn-settings:focus {
  background: #1583bf;
}
.cookie-btn-reject {
  background: #D83054;
  color: #fff;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #fc9090;
  color: #0b2031;
}
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 12000;
  left: 0;  top: 0;
  width: 100vw;  height: 100vh;
  background: rgba(3,19,30,0.78);
  justify-content: center;
  align-items: center;
  animation: fadeModal 0.34s;
}
@keyframes fadeModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal .modal-content {
  background: #ededed;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 8px 42px 0 rgba(6,93,140,0.20);
  min-width: 310px;
  max-width: 95vw;
}
.cookie-modal h2 {
  color: #065D8C;
  margin-bottom: 14px;
  text-align: center;
  font-size: 1.3rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 1rem;
  color: #0B2031;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #065D8C;
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 17px;
  margin-top: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-modal .cookie-btn-accept, .cookie-modal .cookie-btn-reject, .cookie-modal .cookie-btn-settings {
  min-width: 120px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 11px; right: 20px;
  background: none;
  border: none;
  color: #065D8C;
  font-size: 1.7rem;
  cursor: pointer;
}
/*--- MICRO-INTERACTIONS & TRANSITIONS ---*/
button, .cta-btn, [type="submit"] {
  cursor: pointer;
  transition: background 0.16s, color 0.17s, box-shadow 0.15s, transform 0.15s;
}
button:focus, [type="submit"]:focus, .cta-btn:focus {
  outline: 2px solid #52B788;
  outline-offset: 1.5px;
}
hr {
  border: none;
  border-top: 1.5px solid #065D8C;
  margin: 20px 0 30px 0;
}
/*--- GENERAL UTILITY CLASSES ---*/
.text-center {
  text-align: center;
}
.align-center {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}
.gap-24 {
  gap: 24px !important;
}
.gap-16 {
  gap: 16px !important;
}
.round {
  border-radius: 29px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
/*--- SCROLLBAR STYLE (WEBKIT) ---*/
::-webkit-scrollbar {
  width: 9px;
  background: #021b2a;
}
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #065D8C;
}
::-webkit-scrollbar-thumb:hover {
  background: #52B788;
}
/*--- SELECTION COLOR ---*/
::selection {
  background: #52B788;
  color: #03131E;
}

/*--- MEDIA QUERIES FOR MOBILE RESPONSIVENESS ---*/
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .content-wrapper, .text-section { padding: 0 2vw; }
}
@media (max-width: 650px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.18rem; }
  .cta-btn {
    width: 100%;
    padding: 10px 0;
    font-size: 1.05rem;
    margin: 15px 0 0 0;
  }
  .footer-nav { gap: 8px; }
}
@media (max-width: 450px) {
  html, body {
    font-size: 15px;
  }
  .container { padding: 0 2px; }
  section, .section {
    padding: 12px 0 0 0;
  }
}

/*-- Visually hidden utility (for cookie toggle if needed) --*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

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