/* 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;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F2EFE6;
  color: #17365C;
}
html {
  scroll-behavior: smooth;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

body, input, button, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #17365C;
  background: #F2EFE6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #103264;
  line-height: 1.2;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #103264 70%, #55A198 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 14px;
}
p, ul, ol, li {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 12px;
}
b, strong {
  font-weight: 700;
  color: #103264;
}
a {
  color: #103264;
  text-decoration: underline;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #55A198;
}

/* GENERAL CONTAINER STYLES */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section {
  margin-top: 6px;
}

/* HEADER/NAVIGATION */
header {
  background: #103264;
  color: #fff;
  box-shadow: 0 2px 20px rgba(16, 50, 100, 0.07);
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
header nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.012em;
}
header nav a.cta {
  background: #55A198;
  color: #fff;
  padding: 9px 20px;
  margin-left: 10px;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 4px 18px rgba(85,161,152,0.09);
  border-radius: 24px;
  text-shadow: 0 1px 3px rgba(16,50,100,0.06);
  text-decoration: none;
}
header nav a:hover, header nav a:focus {
  color: #55A198;
  background: rgba(242,239,230, 0.13);
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #103264;
  color: #fff;
  border: 2px solid #55A198;
}

header img {
  height: 48px;
  width: auto;
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  background: #55A198;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  margin-left: 10px;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #103264;
  box-shadow: 0 2px 8px rgba(85,161,152,0.18);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(242,239,230, 0.99);
  box-shadow: 0 4px 20px rgba(16,50,100,0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.84,.01,.19,.99);
  z-index: 999;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #103264;
  font-size: 2.4rem;
  padding: 14px 18px;
  align-self: flex-end;
  cursor: pointer;
  margin: 14px 20px 0 0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 12px 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #103264;
  padding: 12px 0;
  border-bottom: 1px solid #d7d5cd;
  transition: color 0.16s, background 0.18s;
}
.mobile-nav a.cta {
  background: #55A198;
  color: #fff;
  border-radius: 22px;
  padding: 11px 26px;
  margin-top: 14px;
  border: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #55A198;
  background: #f7f6f3;
}
.mobile-nav a.cta:hover, .mobile-nav a.cta:focus {
  background: #103264;
  color: #fff;
}

@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN SECTIONS AND SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 38px 16px 32px 12px / 22px 34px 34px 22px;
  background: #fff;
  box-shadow: 0 4px 32px 0 rgba(16,50,100,0.10), 0 1.5px 6px 0 rgba(85,161,152,0.10);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
    border-radius: 20px;
  }
}

ul, ol {
  margin-left: 18px;
  margin-bottom: 10px;
}
ul {
  list-style: disc inside;
}
ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
ol li {
  margin-bottom: 7px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(16,50,100,0.10), 0 1.5px 6px rgba(85,161,152,0.10);
  padding: 28px 22px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 7px solid #55A198;
  transition: border-color 0.22s, box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  border-left: 7px solid #103264;
  box-shadow: 0 8px 36px rgba(16,50,100,0.15);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8fff7;
  border-radius: 18px 32px 18px 8px / 22px 22px 32px 12px;
  box-shadow: 0 4px 18px 0 rgba(16,50,100,0.08), 0 1.5px 10px 0 rgba(85,161,152,0.07);
  margin-bottom: 20px;
  border-left: 5px solid #55A198;
  color: #17365C;
  font-size: 1.1rem;
  font-style: italic;
  transition: box-shadow 0.19s;
}
.testimonial-card p {
  color: #17365C;
  margin-bottom: 0;
  font-size: 1.08rem;
  flex: 1 1 0;
  line-height: 1.45;
}
.testimonial-card span {
  color: #103264;
  font-weight: 700;
  font-size: 0.98rem;
  margin-left: 10px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(16,50,100,0.18);
}

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

/* BUTTONS & CTA */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #103264;
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 900;
  padding: 12px 28px;
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(16,50,100,0.08);
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.18s, color 0.15s, box-shadow 0.17s;
  border: 2px solid #55A198;
  letter-spacing: 0.01em;
  outline: none;
}
.cta:hover, .cta:focus {
  background: #55A198;
  color: #fff !important;
  box-shadow: 0 6px 36px rgba(16,50,100,0.13);
  border-color: #103264;
}

button, .button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  background: #103264;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: bold;
  padding: 11px 22px;
  box-shadow: 0 2px 7px rgba(16,50,100, 0.10);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.16s;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #55A198;
}

/* CARDS IMAGES IN LISTS */
ul li img {
  height: 26px;
  width: 26px;
  margin-right: 7px;
}

.text-section p img {
  height: 18px;
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
}

/* FOOTER */
footer {
  background: #103264;
  color: #fff;
  padding: 48px 0 32px 0;
  border-top-left-radius: 38px;
  border-top-right-radius: 18px;
  box-shadow: 0 -4px 32px 0 rgba(16,50,100,0.13);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px 20px;
}
footer img {
  height: 52px;
  width: auto;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 2px;
  font-weight: 700;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #55A198;
}
footer .text-section p {
  color: #f2efe6;
}
footer .text-section img {
  height: 16px;
  width: 16px;
  margin-right: 7px;
}
footer .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.97rem;
  margin-top: 13px;
}
footer .footer-legal a {
  color: #aec8e7;
}
footer .footer-legal a:hover, footer .footer-legal a:focus {
  color: #55A198;
}
@media (max-width: 880px) {
  footer .container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .footer {
    padding: 20px 0 13px 0;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe7;
  color: #103264;
  padding: 18px 16px 20px 22px;
  box-shadow: 0 -2px 16px rgba(16,50,100,0.13);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  z-index: 2001;
  font-size: 1rem;
  animation: cookiein 0.75s var(--cookie-in-delay,0.0s) cubic-bezier(.77,.33,.4,.93);
}
@keyframes cookiein {
  0% { transform: translateY(32px); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner-content {
  flex: 1 1 0;
  max-width: 530px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #103264;
  border: 2px solid #103264;
  padding: 8px 15px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 5px;
  transition: background 0.15s, color 0.19s;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #103264;
  color: #fff;
}
.cookie-banner .cookie-accept-btn {
  background: #55A198;
  color: #fff;
  padding: 9px 18px;
  border-radius: 14px;
  border: none;
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(85,161,152,0.11);
}
.cookie-banner .cookie-accept-btn:hover, .cookie-banner .cookie-accept-btn:focus {
  background: #103264;
}
.cookie-banner .cookie-reject-btn {
  background: #fff;
  color: #55A198;
  border: 2px solid #55A198;
  padding: 8px 14px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 1rem;
}
.cookie-banner .cookie-reject-btn:hover, .cookie-banner .cookie-reject-btn:focus {
  background: #55A198;
  color: #fff;
}

@media (max-width: 730px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 4vw;
    font-size: 0.97rem;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(16,50,100,0.19);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: none;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: cookiemodalshow 0.41s cubic-bezier(.8,-0.1,.23,1.3);
}
@keyframes cookiemodalshow {
  0% { opacity:0; }
  100% { opacity:1; }
}
.cookie-modal {
  background: #fff;
  max-width: 410px;
  width: 95vw;
  padding: 36px 28px 22px 28px;
  border-radius: 22px 36px 10px 24px / 18px 22px 20px 30px;
  box-shadow: 0 6px 36px rgba(16,50,100,0.23);
  color: #103264;
  position: relative;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: #103264;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: bold;
  color: #103264;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #f6faff;
  border-radius: 15px;
  border: 1.5px solid #55A198;
  position: relative;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .toggle-slider {
  position: absolute;
  left: 3.5px;
  width: 16px;
  height: 16px;
  background: #55A198;
  border-radius: 50%;
  transition: left 0.18s, background 0.19s;
}
.cookie-toggle input:checked + .toggle-slider {
  left: 17.5px;
  background: #103264;
}
.cookie-category[data-essential] .cookie-toggle {
  background: #e6eaf0;
  border: 1.5px solid #bbcde1;
}
.cookie-category[data-essential] label {
  opacity: 0.65;
}
.cookie-category[data-essential] .cookie-toggle .toggle-slider {
  background: #bbcde1;
}
.cookie-modal-action {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 7px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: #103264;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 10px;
}
.cookie-modal .cookie-modal-close:focus {
  color: #55A198;
}

/* MICRO-INTERACTIONS */
.cta, button, .button, .cookie-banner button {
  transition: background 0.18s, color 0.16s, box-shadow 0.19s, outline 0.22s;
  outline: none;
}
.cta:focus, button:focus,
.button:focus, .cookie-banner button:focus {
  outline: 2px dashed #55A198;
  outline-offset: 2px;
}

/* DECORATIVE ARTISTIC SHAPES (ONLY FOR DECORATION, NOT CONTENT) */
.section:before {
  content: '';
  position: absolute;
  top: -32px;
  left: -32px;
  width: 60px;
  height: 60px;
  background: #55A198;
  opacity: 0.07;
  border-radius: 75% 40% 30% 60%;
  z-index: 1;
  pointer-events: none;
}
.section:after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -32px;
  width: 58px;
  height: 48px;
  background: #103264;
  opacity: 0.03;
  border-radius: 40% 55% 70% 25%;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 600px) {
  .section:before, .section:after {
    display: none;
  }
}

/* FORMS (if any appear) */
input, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  width: 100%;
  padding: 10px 12px;
  border-radius: 9px;
  border: 1.4px solid #bbcde1;
  background: #f7fafc;
  font-size: 1rem;
  margin-bottom: 12px;
}
input:focus, textarea:focus {
  border-color: #55A198;
  outline: 1.5px solid #55A198;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1090px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    padding: 15px 10px;
  }
}

/* VISUAL HIERARCHY AND ARTISTIC ACCENTS */
h1, h2, h3, h4, h5, h6 {
  text-shadow: 0 2px 12px rgba(85,161,152,0.07);
}
.section h2 {
  border-left: 5px solid #55A198;
  padding-left: 12px;
  background: #f4fff9;
  border-radius: 18px 7px 12px 10px;
  display: inline-block;
  box-shadow: 0 1px 6px rgba(85,161,152,0.06);
}

/* SPACING ENFORCEMENT (additional to .section etc.) */
.section + .section,
.content-wrapper + .section,
.card + .card {
  margin-top: 24px;
}
.card + .card {
  margin-top: 20px;
}

/* ACCESSIBILITY IMPROVEMENTS */
a:focus-visible, button:focus-visible, .cta:focus-visible {
  outline: 2.5px dashed #55A198;
  outline-offset: 3px;
  background: #e8f8f6;
  color: #103264;
}

/* PRINT OPTIMIZATION */
@media print {
  header, footer, .cta, .mobile-menu, .cookie-banner, .cookie-modal-overlay, .cookie-modal {
    display: none !important;
  }
  .section {
    background: #fff !important;
    box-shadow: none !important;
    color: #000 !important;
  }
}

/* ARTISTIC - UNIQUE LIST BULLETS */
ul li::before {
  content: '\2022';
  color: #55A198;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}
ul li img + * {
  margin-left: 4px;
}
ul li img {
  margin-left: 0;
}

/* END OF STYLE */
