/* RESET AND 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 for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F8FA;
  color: #22405C;
  font-family: 'Lato', Arial, sans-serif;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
a {
  color: #39A0C6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #22405C;
  text-decoration: underline;
}
ul, ol {
  margin-left: 20px;
}

/* FONT IMPORT FOR CREATIVE_ARTISTIC (Google Fonts) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A2C48;
  font-weight: 800;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 28px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

p, li {
  font-size: 1.1rem;
  color: #22405C;
  font-family: 'Lato', Arial, sans-serif;
  margin-bottom: 10px;
}
strong {
  color: #187697;
  font-weight: bold;
}

blockquote {
  border-left: 4px solid #39A0C6;
  background: #EAF3F8;
  padding: 16px 22px;
  margin: 20px 0;
  font-style: italic;
  color: #22405C;
  border-radius: 8px;
}

.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 18px;
  margin: 0 auto;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* HEADER + NAVIGATION */
header {
  background: #22405C;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 12px 0 10px 0;
  justify-content: flex-start;
}
.main-nav a {
  color: #F5F8FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  transition: color 0.2s, background 0.2s;
  padding: 6px 8px;
  border-radius: 5px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #39A0C6;
  color: #FFFFFF;
}
.main-nav img {
  height: 39px;
  width: auto;
  vertical-align: middle;
  margin-right: 16px;
}

.cta-primary {
  background: #39A0C6;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  padding: 9px 22px;
  border-radius: 24px;
  box-shadow: 0 4px 10px rgba(58,160,198,0.13);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  border: none;
  display: inline-block;
  margin-left: 12px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #22405C;
  color: #fff !important;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 20px rgba(58,160,198,0.2);
}

.cta-secondary {
  background: #fff;
  color: #39A0C6;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: 22px;
  border: 2px solid #39A0C6;
  margin-top: 18px;
  display: inline-block;
  transition: background 0.18s, color 0.18s, transform 0.15s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #EAF3F8;
  color: #22405C;
  transform: scale(1.04) rotate(2deg);
}

/* Dynamic Artistic Touches */
.cta-primary, .cta-secondary {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(34,64,92,0.11);
}

/* HAMBURGER MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #39A0C6;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 50%;
  padding: 8px 12px 8px 12px;
  position: absolute;
  right: 20px;
  top: 12px;
  z-index: 1400;
  box-shadow: 0 5px 15px rgba(34,64,92,0.13);
  cursor: pointer;
  transition: background 0.16s, transform 0.14s;
}
.mobile-menu-toggle:focus {
  outline: 3px solid #187697;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #22405C;
  box-shadow: 0 0 50px rgba(34,64,92,0.25);
  z-index: 1600;
  padding-top: 60px;
  transform: translateX(-100%);
  transition: transform 350ms cubic-bezier(.64,.09,.08,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 0;
  border-radius: 6px;
  width: 80%;
  text-align: center;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #39A0C6;
  color: #fff;
}
.mobile-menu-close {
  position: absolute;
  right: 25px;
  top: 18px;
  background: #39A0C6;
  color: #fff;
  font-size: 2.0rem;
  border: none;
  border-radius: 50%;
  padding: 4px 12px 4px 12px;
  cursor: pointer;
  z-index: 1700;
  box-shadow: 0 3px 9px rgba(34,64,92,0.15);
  transition: background 0.19s;
}
.mobile-menu-close:focus {
  outline: 3px solid #F5F8FA;
}


/* HERO SECTIONS */
.hero {
  min-height: 340px;
  background: linear-gradient(92deg,#39A0C6 30%,#22405C 100%);
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-bottom-left-radius: 42px;
  border-bottom-right-radius: 42px;
  box-shadow: 0 13px 35px rgba(58,160,198,0.13);
}
.hero h1 {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.6rem;
  margin-bottom: 18px;
  text-shadow: 0 4px 13px rgba(34,64,92,0.12);
}
.hero p {
  color: #F5F8FA;
  max-width: 680px;
}
.hero .content-wrapper {
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

/* SECTION LAYOUTS */
.feature-grid,
.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 16px;
}
.feature-grid > div,
.service-highlights > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(34,64,92,0.07);
  padding: 24px 18px;
  flex: 1 1 calc(33% - 24px);
  min-width: 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 2.4px solid #EAF3F8;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.16s, border 0.13s;
}
.feature-grid > div:hover, .service-highlights > div:hover {
  box-shadow: 0 8px 32px rgba(58,160,198,0.17);
  border: 2.4px solid #39A0C6;
  transform: translateY(-8px) scale(1.03) rotate(-1.5deg);
}
.feature-grid img {
  width: 44px;
  height: 44px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(34,64,92,0.12);
  margin-bottom: 22px;
  border-left: 7px solid #39A0C6;
  flex: 1 1 auto;
  transition: box-shadow 0.18s, border-color 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(58,160,198,0.14);
  border-left: 7px solid #22405C;
}
.testimonial-card p {
  color: #222;
  font-size: 1.09rem;
  font-style: italic;
  flex: 1;
}
.testimonial-card span {
  color: #39A0C6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

/***** CTA SECTIONS *****/
.cta-section {
  background: linear-gradient(100deg,#F5F8FA 60%,#39A0C6 200%);
  border-radius: 30px;
  box-shadow: 0 7px 24px rgba(34,64,92,0.09);
  padding: 52px 20px;
  text-align: center;
  margin-bottom: 50px;
}
.cta-section h2, .cta-section h1 {
  color: #22405C;
}

/***** CONTENT LAYOUT UTILITIES (MANDATORY CLASSES) *****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(34,64,92,0.1);
  background: #fff;
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/***** FAQ LIST *****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-list > div {
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 2px 11px rgba(34,64,92,0.08);
  border-left: 4px solid #39A0C6;
  transition: border-color 0.19s, box-shadow 0.17s;
}
.faq-list > div:hover {
  border-left: 4px solid #22405C;
  box-shadow: 0 8px 24px rgba(34,64,92,0.17);
}

/***** RESPONSIVE DESIGN *****/
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 98vw;
  }
  .main-nav {
    gap: 14px;
    font-size: 0.99rem;
  }
  .feature-grid > div, .service-highlights > div {
    min-width: 210px;
    max-width: 340px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid,
  .service-highlights {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .hero {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    padding: 25px 0;
    min-height: 210px;
  }
  .content-wrapper {
    gap: 16px;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .cta-section {
    padding: 34px 10px;
    border-radius: 16px;
  }
  /* Layout utilities */
  .content-grid, .card-container, .service-highlights {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 16px 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 1.45rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.09rem;
    margin-bottom: 10px;
  }
  .section {
    padding: 28px 5px;
    margin-bottom: 35px;
  }
}

/***** FOOTER *****/
footer {
  background: #22405C;
  color: #F5F8FA;
  padding: 22px 0 13px 0;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-top: 45px;
  box-shadow: 0 -4px 25px rgba(34,64,92,0.13);
}
footer nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 7px;
}
footer nav a {
  color: #F5F8FA;
  font-size: 1rem;
  transition: color 0.14s, text-decoration 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #39A0C6;
}
footer p {
  text-align: center;
  font-size: 0.97rem;
  margin-top: 3px;
}


/******* COOKIE CONSENT BANNER ******/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #22405C;
  box-shadow: 0 -4px 33px rgba(34,64,92,0.13);
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 22px 8px 18px 8px;
  font-size: 1.06rem;
  flex-wrap: wrap;
  animation: cookieBannerSlideIn 0.47s cubic-bezier(.49,.59,.64,1.1);
}
@keyframes cookieBannerSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0 0 8px 0;
  color: #22405C;
  font-size: 1.01rem;
}
.cookie-banner .cookie-btn {
  margin-left: 8px;
  margin-right: 8px;
  padding: 9px 18px;
  border-radius: 16px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
}
.cookie-banner .accept {
  background: #39A0C6;
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #22405C;
  color: #fff;
}
.cookie-banner .reject {
  background: #EAF3F8;
  color: #187697;
  border: 2px solid #39A0C6;
}
.cookie-banner .reject:hover {
  background: #39A0C6;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: #22405C;
  border: 2px dashed #39A0C6;
}
.cookie-banner .settings:hover {
  background: #EAF3F8;
}

/***** COOKIE SETTINGS MODAL *****/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left:0; top:0; bottom:0; right:0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,64,92,0.33);
  z-index: 1900;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.22s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes cookieModalFadeIn {
  0% {opacity: 0;}
  100%{opacity: 1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 41px rgba(58,160,198,0.23);
  padding: 36px 32px 27px 32px;
  min-width: 310px;
  max-width: 93vw;
  width: 390px;
  position: relative;
  color: #22405C;
  font-family: 'Lato', Arial, sans-serif;
  animation: popslide .44s cubic-bezier(.57,.09,.49,1);
}
@keyframes popslide {
  0% { transform: scale(0.6) translateY(83px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat';
  font-size: 1.24rem;
  margin-bottom: 18px;
  color: #22405C;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 17px;
  top: 17px;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: #39A0C6;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .close-modal:hover {
  color: #22405C;
}
.cookie-modal label, .cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  font-size: 1.04rem;
}
.cookie-modal input[type=checkbox]:not(:disabled) {
  accent-color: #39A0C6;
}
.cookie-modal input[type=checkbox]:disabled {
  accent-color: #a1bbcb;
}
.cookie-modal .save-cookie-btn {
  background: #39A0C6;
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 15px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 15px;
  transition: background 0.18s;
}
.cookie-modal .save-cookie-btn:hover {
  background: #22405C;
}
/********/ 

/***** MICRO-INTERACTIONS / EFFECTS *****/
.card, .feature-grid>div, .service-highlights>div, .testimonial-card, .faq-list>div {
  transition: box-shadow 0.19s, transform 0.16s, border 0.14s;
}
.card:hover, .feature-grid>div:hover, .service-highlights>div:hover, .faq-list>div:hover {
  box-shadow: 0 10px 28px rgba(34,64,92,0.19), 0 1.5px 3px rgba(113,191,230,0.11);
  transform: scale(1.028) rotate(-1.5deg);
  border-color: #39A0C6;
}
.cta-primary:active, .cta-secondary:active,
.mobile-menu-toggle:active, .mobile-nav a:active {
  transform: scale(0.99);
}

/* Artistic color splashes (decorative, not content-facing) */
.card:before, .feature-grid>div:before, .testimonial-card:before {
  content: "";
  position: absolute;
  top: -16px;
  right: -14px;
  width: 38px;
  height: 38px;
  background: rgba(57,160,198,0.13);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(5px);
}

/***** FORMS AND FIELD ELEMENTS (contact page ready) *****/
input, textarea, select {
  width: 100%;
  padding: 10px 14px;
  margin-top: 5px;
  border: 1.5px solid #39A0C6;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  transition: border 0.18s, box-shadow 0.13s;
  background: #F5F8FA;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 2px solid #22405C;
  background: #EAF3F8;
  box-shadow: 0 0 0 2px #39A0C6;
}

button, input[type=submit] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: #39A0C6;
  color: #fff;
  padding: 8px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 5px;
  transition: background 0.17s, transform .15s, box-shadow 0.18s;
  box-shadow: 0 2px 10px rgba(57,160,198,0.07);
}
button:hover, input[type=submit]:hover {
  background: #22405C;
}

/* Spacing and hierarchy utilities */
.mb-8 { margin-bottom: 8px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mb-20 { margin-bottom: 20px!important; }
.mb-24 { margin-bottom: 24px!important; }
.mt-8 { margin-top: 8px!important; }
.mt-20 { margin-top: 20px!important; }
.mt-30 { margin-top: 30px!important; }
.gap-20 { gap: 20px!important; }
.gap-24 { gap: 24px!important; }

/* Visual Hierarchy for Lists */
ul, ol {
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 7px;
  font-size: 1.04rem;
  padding-left: 4px;
}

/* Artistic Bullet for Brand List Items */
ul li::before {
  content: '\25FC';
  color: #39A0C6;
  font-size: 0.85em;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}

/***** UNIQUE ELEMENTS: Decorative Splashes *****/
/* Larger screen only */
@media (min-width: 992px) {
  .hero:after {
    content: '';
    position: absolute;
    right: 35px;
    top: 32px;
    width: 108px;
    height: 108px;
    border-radius: 55% 45% 53% 47%/60% 40% 60% 40%;
    background: rgba(34,64,92,0.11);
    z-index: 0;
    filter: blur(18px);
  }
}

/***** Z-INDEX PROTECTION FOR OVERLAYS *****/
.mobile-menu, .cookie-modal-overlay {
  z-index: 1600;
}
.cookie-banner {
  z-index: 1800;
}

/**** Hide overlay scroll on open modals/menus ****/
body.menu-open, body.cookie-modal-open {
  overflow: hidden;
}

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