/* CSS RESET & NORMALIZE */
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, strong, sub, sup, 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, main, 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; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #22263C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #17486C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #38A6A6;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6, .btn-primary, .btn-link {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* TYPOGRAPHY */
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  color: #17486C;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #17486C;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: #17486C;
}
h4, h5, h6 {
  color: #17486C;
  margin-bottom: 10px;
}
p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  color: #22263C;
}
small {
  font-size: 0.92rem;
  color: #727272;
}
strong, b {
  font-weight: 700;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SECTION STYLES */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(23,72,108,0.05), 0 1.5px 5.5px rgba(56,166,166,0.08);
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
}

/* HEADER */
header {
  padding: 0 0 6px 0;
  background: #fff;
  box-shadow: 0 2px 24px rgba(23,72,108,0.07);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 32px;
}
header a img {
  height: 44px;
  width: auto;
  margin-right: 10px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #17486C;
  padding: 2px 6px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
  line-height: 1.7;
}
nav a:hover, nav a:focus {
  background: #F4EFE2;
  color: #38A6A6;
  text-decoration: none;
}
nav .btn-primary {
  margin-left: 12px;
}

/* BTN PRIMARY */
.btn-primary {
  background: #38A6A6;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 13px 28px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 3px 18px 0 rgba(23,72,108,0.09);
  cursor: pointer;
  display: inline-block;
  transition: background 0.22s, transform 0.15s, box-shadow 0.20s;
  letter-spacing: 0.15px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #17486C;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(56,166,166,0.12);
}
.btn-link {
  background: transparent;
  color: #38A6A6;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  padding: 0 2px;
  margin-top: 8px;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.15s;
}
.btn-link:hover, .btn-link:focus {
  color: #17486C;
  text-decoration: none;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #17486C;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.15s;
  z-index: 52;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F4EFE2;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85vw;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: -6px 0 32px 0 rgba(23,72,108,0.19);
  z-index: 1100;
  transition: transform 0.32s cubic-bezier(.74,.2,.33,1);
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  padding: 32px 28px 22px 28px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #17486C;
  background: none;
  border: none;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 7px;
  transition: background 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F4EFE2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.13rem;
  color: #17486C;
  padding: 9px 2px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #38A6A6;
  color: #fff;
}

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

/* MAIN LAYOUT WRAPPERS */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .content-wrapper {
    gap: 22px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 12px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  flex: 1 1 320px;
  min-width: 0;
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 36px 0 0 0;
}

/* FEATURE GRID / CARDS / SLIDERS - FLEX ONLY */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F4EFE2;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(56,166,166, 0.09);
  padding: 24px 20px 22px 20px;
  max-width: 320px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.22s, transform 0.17s;
  margin-bottom: 20px;
  border: 2px solid #38A6A670;
  position: relative;
}
.feature-item img {
  height: 44px;
  width: 44px;
  margin-bottom: 7px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 4px 24px 0 rgba(23,72,108,0.17), 0 4px 14px rgba(56,166,166,0.17);
  transform: translateY(-6px) scale(1.025);
  z-index: 2;
  border-color: #17486C;
}

/* TESTIMONIALS */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(23,72,108,0.09);
  border: 2.5px solid #38A6A660;
  min-width: 230px;
  max-width: 420px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.15s;
}
.testimonial-card p {
  color: #22263C;
  font-size: 1.05rem;
  line-height: 1.6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-card .testimonial-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 0.99rem;
  color: #17486C;
  font-weight: 600;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 24px 0 rgba(56,166,166,0.14);
  border-color: #17486C;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1.5px 8px rgba(23,72,108,0.05);
}
.pricing-table th, .pricing-table td {
  padding: 18px 14px;
  border-bottom: 2px solid #F4EFE2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.pricing-table th {
  background: #17486C;
  color: #fff;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td {
    padding: 10px 6px;
    font-size: 0.98rem;
  }
}

/* CLIENTS LIST */
.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.client-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #F4EFE2;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(56,166,166,0.07);
  padding: 18px 16px 18px 16px;
  min-width: 190px;
  max-width: 320px;
  flex: 1 1 200px;
  border: 2px solid #38A6A646;
  margin-bottom: 20px;
}
.client-logo img {
  width: 42px;
  height: 42px;
}

/* MAP & SHORT INFO */
.map-location {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 1rem;
  color: #17486C;
}
.map-location img {
  width: 34px;
  height: 34px;
}

/* FOOTER */
footer {
  background: #17486C;
  color: #fff;
  padding: 38px 0 18px 0;
  box-shadow: 0 0 32px rgba(23,72,108,0.15);
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-navigation {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-navigation a {
  color: #38A6A6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0 3px;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #fff;
}
.short-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 1rem;
  color: #F4EFE2;
  align-items: center;
  justify-content: center;
}
.short-contact-info img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  vertical-align: middle;
}
.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.social-icons img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.2);
  opacity: 0.85;
  transition: filter 0.17s, opacity 0.15s, transform 0.17s;
  border-radius: 7px;
}
.social-icons img:hover, .social-icons img:focus {
  filter: grayscale(0) drop-shadow(0 1px 0 #38A6A6);
  opacity: 1;
  transform: scale(1.12) rotate(-3deg);
}
footer small {
  color: #F4EFE2;
  display: block;
  margin-top: 8px;
  opacity: 0.85;
}

/* TRUST SIGNALS */
.trust-signals {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-top: 16px;
}
.trust-signals img {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 7px;
  padding: 4px;
  box-shadow: 0 1px 6px 0 rgba(23,72,108,0.10);
}

/* FORM, INPUTS, ETC. */
input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
input, textarea, select {
  border-radius: 6px;
  border: 2px solid #38A6A6;
  padding: 12px 10px;
  outline: none;
  margin-bottom: 14px;
  background: #fff;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #17486C;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #17486C;
  font-weight: 700;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-list .text-section h3 {
  color: #38A6A6;
  margin-top: 18px;
}

/* CARD CONTAINER / CARDS / GRIDS (FLEX ONLY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #F4EFE2;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(23,72,108,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 20px;
  flex: 1 1 320px;
  min-width: 220px;
  transition: box-shadow 0.19s, transform 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 5px 22px rgba(56,166,166,0.13);
  transform: translateY(-3px) scale(1.013);
  z-index: 2;
}

.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;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* TABLE */
table {
  width: 100%;
}
th, td {
  text-align: left;
}

/* VISUAL HIERARCHY & EFFECTS */
section:nth-child(odd) {
  background-color: #fff;
}
section:nth-child(even) {
  background-color: #F4EFE2;
}

/* GEOMETRIC HLINES / DECOR SHAPES (OPTIONAL FOR STYLE) */
hr {
  border: none;
  border-top: 3px solid #38A6A6;
  border-radius: 3px;
  margin: 24px 0 32px 0;
  height: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .feature-grid, .testimonial-slider, .client-list, .card-container, .content-grid {
    gap: 18px;
  }
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .footer-navigation {
    flex-wrap: wrap;
    gap: 16px;
  }
  .short-contact-info {
    flex-direction: column;
    gap: 6px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .feature-grid, .testimonial-slider, .client-list, .card-container, .content-grid {
    gap: 12px;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 5px;
  }
}

/* SPACING REQUIREMENTS */
.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; }

/* ACCESSIBILITY: FOCUS STATES */
a:focus, .btn-primary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2.5px solid #38A6A6;
  outline-offset: 2px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #17486C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  box-shadow: 0 -3px 26px rgba(23,72,108,0.10);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 26px 10px 22px 10px;
  z-index: 1200;
  animation: cookieBannerSlideIn 0.6s cubic-bezier(.8,.09,.31,1) 1;
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 0 212px;
  font-size: 1rem;
  color: #fff;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  margin: 0 0 0 0;
  cursor: pointer;
  padding: 10px 28px;
  font-size: 0.99rem;
  outline: none;
  min-width: 90px;
  box-shadow: 0 1px 7px 1px rgba(56,166,166,0.08);
  transition: background .15s, color .15s, box-shadow .18s, transform .13s;
}
.cookie-banner__accept {
  background: #38A6A6;
  color: #fff;
}
.cookie-banner__accept:hover, .cookie-banner__accept:focus {
  background: #2e8888;
  color: #fff;
}
.cookie-banner__reject {
  background: #fff;
  color: #17486C;
}
.cookie-banner__reject:hover, .cookie-banner__reject:focus {
  background: #F4EFE2;
  color: #17486C;
}
.cookie-banner__settings {
  background: #17486C;
  color: #fff;
  border: 2px solid #38A6A6;
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus {
  background: #38A6A6;
  color: #fff;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .cookie-banner__text {
    margin-right: 0;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  right:0;
  bottom: 0;
  background: rgba(23,72,108,0.43);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.32s cubic-bezier(.8,.09,.31,1) 1;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__content {
  background: #fff;
  padding: 32px 28px;
  border-radius: 17px;
  min-width: 280px;
  max-width: 98vw;
  max-height: 86vh;
  box-shadow: 0 8px 32px rgba(23,72,108,0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}
.cookie-modal__header {
  font-size: 1.34rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #17486C;
  margin-bottom: 10px;
}
.cookie-modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #17486C;
  cursor: pointer;
  border-radius: 7px;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #F4EFE2;
}
.cookie-modal__category {
  display: flex;
  flex-direction: row;
  gap: 21px;
  align-items: center;
  margin-top: 3px;
  margin-bottom: 8px;
}
.cookie-modal__category-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  color: #17486C;
  font-weight: 600;
  flex: 1 0 120px;
}
.cookie-modal__toggle {
  accent-color: #38A6A6;
  width: 24px;
  height: 24px;
}
.cookie-modal__category-essential .cookie-modal__toggle {
  pointer-events: none;
  opacity: 0.65;
}
.cookie-modal__footer {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal__save {
  background: #38A6A6;
  color: #fff;
  border: none;
}
.cookie-modal__save:hover, .cookie-modal__save:focus {
  background: #17486C;
}

@media (max-width: 540px) {
  .cookie-modal__content {
    padding: 16px 7px 14px 12px;
    min-width: 0;
    max-width: 97vw;
  }
  .cookie-modal__header {
    font-size: 1rem;
  }
}

/* ANIMATION SUPPORT */
.btn-primary, .feature-item, .testimonial-card, .card, .mobile-menu, .cookie-banner, .cookie-modal__content {
  transition: box-shadow 0.20s, background 0.17s, color 0.15s, border 0.14s, transform 0.13s;
}

/* VISUAL HIERARCHY / EMPHASIS */
h1 {
  background: linear-gradient(90deg, #17486C 80%, #38A6A6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 800;
}

/* PREVENT OVERLAPPING & FLEX ONLY: ENFORCE GAPS */
.feature-grid > *, .testimonial-slider > *, .client-list > *, .card-container > *, .content-grid > * {
  margin-bottom: 0 !important;
}

/* HIDING NATIVE SCROLLBARS FOR SLIDERS/OVERLAYS (optional for style) */
.mobile-menu, .cookie-modal__content {
  scrollbar-width: thin;
  scrollbar-color: #38A6A6 #fff;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal__content::-webkit-scrollbar {
  width: 7px;
  background: #fff;
}
.mobile-menu::-webkit-scrollbar-thumb, .cookie-modal__content::-webkit-scrollbar-thumb {
  background: #38A6A6;
  border-radius: 5px;
}

/* MISC */
ul {
  list-style: disc inside;
}

::-webkit-input-placeholder { color: #A5A5A5; }
::-moz-placeholder { color: #A5A5A5; }
:-ms-input-placeholder { color: #A5A5A5; }
::placeholder { color: #A5A5A5; }

/* END CSS */
