/* 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, main, 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 {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F5F8FA;
}
body {
  min-height: 100vh;
  color: #113150;
  background: linear-gradient(135deg, #e0f7fa 0%, #54CFB6 100%);
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #113150;
}

/* TYPOGRAPHY HIERARCHY */
h1 {
  font-size: 2.75rem; /* 44px */
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, span {
  font-size: 1rem;
  line-height: 1.65;
  color: #113150;
}
strong, b {
  font-weight: 700;
}

/* LINKS & BUTTONS */
a {
  color: #54CFB6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #113150;
}
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(95deg, #54CFB6 0%, #2ED0B2 100%);
  color: #113150;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 36px;
  padding: 13px 36px;
  box-shadow: 0 4px 20px rgba(84, 207, 182,0.14);
  outline: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.primary-cta:hover, .primary-cta:focus {
  background: linear-gradient(95deg, #41bbaa 0%, #113150 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(17,49,80,0.19);
}
button, .button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #113150;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #54CFB6;
  color: #113150;
}

/* LAYOUT CONTAINERS & SECTIONS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEX LAYOUTS - per requirements */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(17,49,80,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(17,49,80,0.16);
  transform: translateY(-4px) scale(1.02);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(17,49,80,0.08);
  border-left: 5px solid #54CFB6;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(95deg, #54CFB6 0%, #113150 100%);
  color: #fff;
  padding-top: 48px;
  padding-bottom: 48px;
  min-height: 320px;
}
.hero h1, .hero h2, .hero p {
  color: #fff;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.hero .primary-cta {
  margin-top: 16px;
}

/* FEATURES SECTION */
.features .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features .content-wrapper > ul > li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(17,49,80,0.09);
  flex: 1 1 200px;
  min-width: 220px;
  margin-bottom: 24px;
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.features .content-wrapper > ul > li:hover {
  box-shadow: 0 6px 24px rgba(84,207,182,0.15);
  transform: translateY(-6px) scale(1.025);
}
.features .content-wrapper > ul > li img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

/* ABOUT SECTION */
.about .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0 0 0;
  padding: 0;
}
.about .content-wrapper ul li {
  background: #f5f8fa;
  border-radius: 12px;
  padding: 10px 22px;
  font-size: 1rem;
  color: #113150;
}
.certifications, .certificate {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  margin-top: 16px;
  padding: 14px 20px;
  font-size: 1.1rem;
  box-shadow: 0 2px 14px rgba(17,49,80,0.09);
}

/* SERVICES SECTION */
.services .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}
.services .content-wrapper > ul > li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(17,49,80,0.07);
  padding: 22px 20px 16px 20px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.20s, transform 0.18s;
}
.services .content-wrapper > ul > li:hover {
  box-shadow: 0 5px 20px rgba(84,207,182,0.14);
  transform: translateY(-4px) scale(1.015);
}
.services .content-wrapper .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #54CFB6;
  margin-left: 10px;
}
.support-contact, .contact-info, .company-info {
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #113150;
  font-size: 1rem;
}
.map-placeholder {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 1px 8px rgba(17,49,80,0.06);
}

/* CTA SECTION / CONTACT BUTTONS */
.cta {
  background: linear-gradient(90deg, #113150 60%, #54CFB6 100%);
  color: #fff;
  border-radius: 26px;
  margin-bottom: 40px;
}
.cta .content-wrapper, .cta {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cta p, .cta strong { color: #fff; }

/* TESTIMONIALS */
.testimonials .content-wrapper {
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-card {
  background: #fff;
  color: #113150;
  box-shadow: 0 2px 10px rgba(17,49,80,0.08);
  border-radius: 15px;
  margin-bottom: 20px;
  gap: 0px;
}
.testimonial-card p {
  font-size: 1.19rem;
  color: #113150;
  margin: 0 0 6px 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: #54CFB6;
  font-weight: 600;
}

/* FOOTER STYLES */
footer {
  background: linear-gradient(86deg, #113150 80%, #195A80 100%);
  color: #fff;
  padding-top: 36px;
  padding-bottom: 24px;
  margin-top: 60px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer nav a {
  color: #54CFB6;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  min-width: 180px;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer-contact strong {
  font-weight: 700;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  opacity: 0.85;
  transition: opacity 0.18s, filter 0.18s;
}
.footer-social img:hover {
  opacity: 1;
  filter: brightness(1.15) drop-shadow(0 1px 5px #54CFB6);
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px rgba(17,49,80,0.05);
  z-index: 10;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  color: #113150;
  font-weight: 500;
  padding: 10px 8px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.15s, color 0.17s;
}
header nav a:hover, header nav a:focus {
  background: #f0f7fa;
  color: #54CFB6;
}
header .primary-cta {
  margin-left: 16px;
  font-size: 1rem;
}
.mobile-menu-toggle {
  display: none;
  background: #54CFB6;
  color: #113150;
  border: none;
  font-size: 2.1rem;
  padding: 6px 14px;
  border-radius: 12px;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.18s, color 0.2s, box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(84,207,182,0.07);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #113150;
  color: #fff;
}

/* MOBILE MENU / OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1003;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(17,49,80,0.55);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
.mobile-menu.active {
  display: block;
  opacity: 1;
  visibility: visible;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  background: #fff;
  min-width: 70vw;
  max-width: 340px;
  height: 100vh;
  position: fixed;
  top: 0; left: 0;
  z-index: 1004;
  padding: 48px 30px 24px 30px;
  box-shadow: 2px 0 16px rgba(17,49,80,0.19);
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(0.47,0.25,0.655,0.83);
}
.mobile-menu.active nav.mobile-nav {
  transform: translateX(0);
}
.mobile-nav a {
  color: #113150;
  padding: 14px 0;
  margin-bottom: 8px;
  font-size: 1.18rem;
  font-weight: 600;
  border-radius: 7px;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f0f7fa;
  color: #54CFB6;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 28px;
  z-index: 1005;
  background: #113150;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #54CFB6;
  color: #113150;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: #fff;
  color: #113150;
  padding: 22px 20px;
  box-shadow: 0 -2px 14px rgba(17,49,80,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  transition: transform 0.36s cubic-bezier(0.52,0,0.48,1), opacity 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  flex: 1 1 180px;
  color: #113150;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner .cookie-btn {
  padding: 8px 24px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  box-shadow: 0 1px 5px rgba(84,207,182,0.05);
  cursor: pointer;
  transition: background 0.17s, color 0.18s;
}
.cookie-banner .cookie-btn.accept {
  background: #54CFB6;
  color: #113150;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #113150;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  border: 1.5px solid #113150;
  color: #113150;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #113150;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #54CFB6;
  border: 1.5px solid #54CFB6;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #54CFB6;
  color: #113150;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1530;
  background: #fff;
  color: #113150;
  border-radius: 22px;
  box-shadow: 0 8px 64px rgba(17,49,80,0.19);
  padding: 32px 28px 20px 28px;
  max-width: 92vw;
  width: 410px;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.3s, transform 0.3s;
  opacity: 1;
  visibility: visible;
}
.cookie-modal.hide {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -40%) scale(0.97);
}
.cookie-modal h2, .cookie-modal h3 {
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 14px;
  background: #eafaf5;
  border: 1.5px solid #54CFB6;
  cursor: pointer;
  position: relative;
  transition: background 0.28s;
}
.cookie-modal .cookie-toggle:after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #54CFB6;
  transition: left 0.22s;
}
.cookie-modal .cookie-toggle.active {
  background: #54CFB6;
}
.cookie-modal .cookie-toggle.active:after {
  left: 18px;
  background: #fff;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: transparent;
  border: none;
  color: #54CFB6;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #113150;
}

/* SHARED UTILITIES */
.gap8 { gap: 8px; }
.gap16 { gap: 16px; }
.gap24 { gap: 24px; }
.rounded {
  border-radius: 12px;
}
.bg-accent {
  background: #54CFB6 !important;
  color: #113150 !important;
}
.bg-primary {
  background: #113150 !important;
  color: #fff !important;
}
.text-secondary {
  color: #54CFB6 !important;
}
.hide {
  display: none !important;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1160px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .features .content-wrapper > ul,
  .services .content-wrapper > ul {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .hero {
    padding-top: 28px;
    padding-bottom: 28px;
    min-height: 180px;
  }
  /* Navbar */
  header nav {
    display: none;
  }
  header .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  /* Footer responsive */
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  /* Features/services cards stacking */
  .features .content-wrapper > ul,
  .services .content-wrapper > ul {
    flex-direction: column;
    gap: 14px;
  }
  .features .content-wrapper > ul > li,
  .services .content-wrapper > ul > li {
    min-width: 0;
    width: 100%;
  }
  .about .content-wrapper ul {
    flex-direction: column;
    gap: 10px;
  }
  .testimonial-card {
    padding: 14px;
  }
  .cta .content-wrapper {
    gap: 8px;
    padding: 0 0;
  }
  .map-placeholder {
    flex-direction: column;
    gap: 6px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 16px 6px 12px 10px;
  }
  .services .content-wrapper > ul > li,
  .features .content-wrapper > ul > li {
    padding: 12px 8px 14px 14px;
  }
}

/* Print minimal */
@media print {
  header, .mobile-menu, .primary-cta, .footer-social, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  footer {
    background: none;
    color: #000;
  }
}

/* END OF CSS */
