/*! Reset & Base Styles */
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,
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  background: #F7F9FB;
  color: #224357;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: #224357;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #8DC1CF;
  outline-offset: 2px;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 16px;
  outline: none;
  background: none;
  border: none;
  padding: 0;
}

/*! Typography Scale & Strong Fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }
p, ul, li, ol { font-size: 1rem; line-height: 1.7; }
strong { font-weight: 700; }
.center-text { text-align: center; }

/*! Containers & Layouts (Flex only) */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: inherit;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(34, 67, 87, 0.07), 0 1.5px 5px #8DC1CF22;
  padding: 30px 24px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(34, 67, 87, 0.14), 0 3px 7px #8DC1CF33;
  transform: translateY(-2px) 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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #8DC1CF11;
  padding: 24px 20px 16px 20px;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  min-height: 240px;
  transition: box-shadow 0.15s, transform 0.1s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature-item:hover {
  box-shadow: 0 8px 36px #8DC1CF33;
  transform: translateY(-2px) scale(1.03);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 20px 28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px #8DC1CF22;
  min-width: 280px;
  max-width: 370px;
  flex: 1 1 310px;
  margin-bottom: 20px;
  border-left: 8px solid #8DC1CF;
  color: #224357;
}
.testimonial-card p { color: #224357; font-size: 1.1rem; font-weight: 600; }
.testimonial-card span { font-size: 1rem; opacity: 0.85; }

/*! Navigation */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(34, 67, 87, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 80px;
}
.main-nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #224357;
  letter-spacing: 0.01em;
  padding: 6px 14px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #8DC1CF26;
  color: #224357;
}
.cta-btn {
  display: inline-block;
  background: #8DC1CF;
  color: #224357;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 12px 32px;
  border: none;
  border-radius: 32px;
  margin-left: 12px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.1s;
  box-shadow: 0 2px 16px #8DC1CF33;
  cursor: pointer;
  text-transform: uppercase;
}
.cta-btn:hover, .cta-btn:focus {
  background: #224357;
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 5px 26px #22435722;
}

/*! Hamburger Button */
.mobile-menu-toggle {
  background: #8DC1CF;
  color: #224357;
  font-size: 2rem;
  border-radius: 13px;
  padding: 4px 15px 4px 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px #8DC1CF33;
  display: none;
  transition: background 0.15s;
  margin-left: 10px;
  z-index: 111;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #224357;
  color: #fff;
}
/*! Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #224357;
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 2222;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-end;
  margin: 20px 24px 0 0;
  z-index: 10;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #8DC1CF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 24px;
  gap: 16px;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  padding: 10px 10px 10px 2px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  width: 90vw;
  max-width: 360px;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #8DC1CF;
  color: #224357;
}

/*! Hide desktop main nav on small screens, show burger/menu */
@media (max-width: 991px) {
  .main-nav,
  .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/*! HERO/CTA Banners & Visual Sections */
.hero {
  background: linear-gradient(106deg, #224357 72%, #8DC1CF 100%);
  color: #fff;
  padding: 65px 0 62px 0;
  margin-bottom: 56px;
}
.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.hero p {
  color: #F7F9FB;
  font-size: 1.18rem;
  margin-bottom: 22px;
}
.hero .cta-btn {
  background: #F7F9FB;
  color: #224357;
  font-weight: 800;
  box-shadow: 0 2px 20px #22435733;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #8DC1CF;
  color: #224357;
}
.cta-banner {
  background: #8DC1CF;
  color: #224357;
  padding: 34px 0 32px 0;
  margin-bottom: 0;
}
.cta-banner h2 {
  color: #224357;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-banner .cta-btn {
  background: #224357;
  color: #fff;
  font-size: 1.13rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.cta-banner .cta-btn:hover, .cta-banner .cta-btn:focus {
  background: #F7F9FB;
  color: #224357;
}

/*! Feature and Services Grid */
.feature-grid,
.service-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
}
.service-overview {
  gap: 28px;
}
.service-highlight {
  background: #fff;
  border-radius: 16px;
  padding: 24px 16px 20px 20px;
  box-shadow: 0 2px 16px #8DC1CF14;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 240px;
  margin-bottom: 20px;
}
/* Service Table */
.service-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px #8DC1CF14;
}
.service-table th,
.service-table td {
  text-align: left;
  padding: 16px 12px;
  border-bottom: 1px solid #8DC1CF11;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.service-table th {
  background: #8DC1CF22;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}
.service-table tr:last-child td {
  border-bottom: none;
}

/* Feature List on collections/cadouri etc */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  align-items: flex-start;
  margin-bottom: 6px;
}
.feature-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px 15px 18px;
  min-width: 195px;
  box-shadow: 0 1.5px 8px #8DC1CF1A;
  margin-bottom: 20px;
}
.feature-list img {
  height: 36px;
  width: 36px;
}

/* Service List */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  flex: 1 1 220px;
  box-shadow: 0 1.5px 8px #8DC1CF1A;
  min-width: 216px;
  max-width: 340px;
  margin-bottom: 20px;
  font-size: 1.01rem;
  font-weight: 600;
}

/* Custom Steps (numbered) */
.custom-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: stepcounter;
  margin-left: 0;
  margin-bottom: 18px;
}
.custom-steps li {
  position: relative;
  padding-left: 36px;
  line-height: 1.7;
  font-weight: 700;
  color: #224357;
}
.custom-steps li:before {
  counter-increment: stepcounter;
  content: counter(stepcounter);
  display: inline-block;
  position: absolute;
  left: 0; top: 2px;
  width: 26px;
  height: 26px;
  background: #8DC1CF;
  color: #224357;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.07rem;
  border-radius: 100%;
  text-align: center;
  line-height: 26px;
  box-shadow: 0 1.5px 6px #8DC1CF33;
}

/* Text Section */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul, .text-section ol {
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  gap: 10px;
}
.text-section li {
  list-style: disc inside;
  font-size: 1.02em;
}
.text-section a {
  color: #8DC1CF;
  text-decoration: underline dotted;
}
.text-section a:hover {
  color: #224357;
}

/* Contact info block */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.contact-info img {
  margin-right: 8px;
  vertical-align: middle;
  width: 24px;
  height: 24px;
}
.contact-info a {
  color: #224357;
}
.contact-info a:hover {
  color: #8DC1CF;
}

/*! Footer Styles */
footer {
  background: #224357;
  color: #fff;
  margin-top: 44px;
  padding: 34px 0 24px 0;
}
.footer-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #8DC1CF;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
  vertical-align: middle;
}
footer small {
  color: #8DC1CF;
  margin-top: 12px;
  font-size: 0.97rem;
  display: block;
}
footer a {
  color: #8DC1CF;
  transition: color 0.18s;
}
footer a:hover, footer a:focus {
  color: #fff;
}

/*! Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 99999;
  background: #fff;
  color: #224357;
  box-shadow: 0 -2px 16px #8DC1CF22;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 34px;
  padding: 24px 16px 16px 16px;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  transition: transform 0.34s cubic-bezier(.68,-0.55,.27,1.55);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner--msg {
  max-width: 560px;
  flex: 1 0 250px;
}
.cookie-banner--actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 26px;
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, transform 0.12s;
  outline: none;
}
.cookie-btn.accept {
  background: #8DC1CF;
  color: #224357;
  font-weight: 900;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #224357;
  color: #fff;
}
.cookie-btn.reject {
  background: #224357;
  color: #fff;
  font-weight: 900;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #8DC1CF;
  color: #224357;
}
.cookie-btn.settings {
  background: #fff;
  color: #224357;
  border: 2px solid #8DC1CF;
  font-weight: 700;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #8DC1CF22;
  color: #224357;
}

/*! Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(34,67,87,0.18);
  z-index: 120000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 4px 30px #8DC1CF55;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 1.8rem;
  color: #8DC1CF;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #224357; }
.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
  font-weight: 600;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  border-radius: 14px;
  background: #8DC1CF44;
  position: relative;
  margin-left: 8px;
  transition: background 0.2s;
  cursor: pointer;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch span {
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #8DC1CF;
  border-radius: 50%;
  transition: left 0.18s, background 0.2s;
}
.cookie-switch input:checked + span {
  left: 19px;
  background: #224357;
}
.cookie-category label {
  user-select: none;
  cursor: pointer;
}
.cookie-category.essential label {
  color: #aaa;
  cursor: not-allowed;
}

/*! RESPONSIVE DESIGN / MOBILE FIRST  */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
}
@media (max-width: 991px) {
  .header-flex { flex-wrap: wrap; min-height: 62px; }
  .feature-list, .feature-grid, .service-list, .service-overview, .testimonial-slider, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-flex { flex-direction: column; gap: 22px; align-items: flex-start; }
}
@media (max-width: 768px) {
  .content-wrapper, .section, .container {
    padding-left: 7px; padding-right: 7px;
  }
  .hero, .cta-banner { padding: 32px 5px 32px 5px; }
  .hero h1, .cta-banner h2 { font-size: 1.65rem; }
  .feature-list, .feature-grid, .service-list, .service-overview, .testimonial-slider, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-item, .service-highlight, .card, .testimonial-card, .footer-nav {
    min-width: unset; max-width: 100%;
  }
  .testimonial-card { padding: 15px 12px; }
  .footer-flex { gap: 14px;}
  .mobile-menu {
    padding-bottom: 60px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    font-size: 1rem;
    padding: 15px 8px 10px 8px;
  }
  .cookie-banner--actions { flex-wrap: wrap; gap: 10px; }
  .cookie-modal-content { padding: 20px 6px 18px 12px; max-width: 99vw; }
}
@media (max-width: 480px) {
  .hero, .cta-banner {
    padding: 20px 1px 20px 1px;
  }
  .footer-contact {
    font-size: 0.93rem;
  }
}

/*! Small Animations & Micro-Interactions */
.card, .feature-item, .service-item, .service-highlight, .cta-btn {
  transition: box-shadow 0.18s, transform 0.12s;
}
.card:active, .feature-item:active, .cta-btn:active {
  transform: scale(0.97);
}

/*! Miscellaneous Details */
ul, ol { margin-left: 2em; margin-bottom: 10px; }
li { margin-bottom: 10px; }
::-webkit-scrollbar {
  width: 9px;
  background: #F7F9FB;
}
::-webkit-scrollbar-thumb {
  background: #8DC1CF44;
  border-radius: 9px;
}

/*! Preventing Overlap - Extra Spacing Between Cards/Sections */
.section + .section,
.card + .card,
.feature-item + .feature-item,
.service-item + .service-item,
.testimonial-card + .testimonial-card,
.card-container + .card-container,
.container + .container {
  margin-top: 20px;
}

/*! END */
