/* === 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, 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: 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: #F4F4F4;
  color: #264653;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2A9D8F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #264653;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #264653;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #264653;
}
strong {
  font-weight: 700;
}

/* === STRUCTURE & LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(42,157,143,0.04);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.features-grid,
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid > div,
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(38,70,83,0.08);
  padding: 24px;
  margin-bottom: 20px;
  min-width: 250px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card {
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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;
}

.section ul, .section ol {
  margin-bottom: 1em;
}

.section ul li, .section ol li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.7;
}

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

/* === TESTIMONIALS === */
.testimonial-slider {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F4F4F4;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(38,70,83,0.04);
  color: #222;
  flex: 1 1 300px;
  min-width: 250px;
  margin-bottom: 20px;
  border-left: 6px solid #2A9D8F;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  border-color: #264653;
  box-shadow: 0 6px 24px 0 rgba(42,157,143,0.10);
}
.testimonial-card p {
  color: #222;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-person {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  color: #264653;
}

/* === BUTTONS === */
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  background: #2A9D8F;
  color: #fff;
  padding: 14px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.12s;
  box-shadow: 0 2px 12px 0 rgba(38,70,83,0.06);
  outline: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 10px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #264653;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(42,157,143,0.13);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(38,70,83,0.06);
  padding: 0 0 0 0;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 20px 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #264653;
  padding: 8px 14px;
  border-radius: 36px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #2A9D8F;
  color: #fff;
  text-decoration: none;
}
header nav .btn-primary {
  margin-left: auto;
  margin-right: 0;
  padding: 10px 28px;
  font-size: 1rem;
}
header nav a img {
  height: 38px;
  width: auto;
  vertical-align: middle;
  border-radius: 12px;
}

/* Burger menu button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 1200;
  background: #2A9D8F;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2.2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(42,157,143,0.16);
}
.mobile-menu-toggle:active {
  background: #264653;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #fff;
  z-index: 2000;
  box-shadow: 0 4px 32px 0 rgba(38,70,83,0.23);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.73,0.04,0.29,1.01);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  opacity: 1;
  visibility: visible;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #264653;
  background: none;
  border: none;
  position: absolute;
  top: 20px;
  right: 24px;
  cursor: pointer;
  z-index: 2100;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2A9D8F;
  color: #fff;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 90px;
  padding: 30px 36px;
}
.mobile-nav a {
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 32px;
  padding: 12px 10px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2A9D8F;
  color: #fff;
}

/* Always hide nav by default on mobile, except for menu toggle */
@media (max-width: 991px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* === FOOTER === */
footer {
  padding: 44px 0 16px 0;
  background: #264653;
  color: #fff;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
footer p {
  color: white;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.9;
  letter-spacing: .03em;
  transition: color 0.2s, text-decoration 0.2s;
  padding: 8px 12px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #2A9D8F;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 1rem;
  color: #fff;
}
.footer-contact img {
  vertical-align: middle;
  height: 22px;
  margin-right: 8px;
  border-radius:3px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: #264653;
  color: #fff;
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 -4px 32px 0 rgba(38,70,83,0.13);
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  font-size: 1.06rem;
  animation: slideUp 0.62s cubic-bezier(0.63,0.16,0.25,1.08);
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 100px;
  padding: 10px 32px;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  font-weight: 600;
}
.cookie-banner .accept {
  background: #2A9D8F;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #2A9D8F;
}
.cookie-banner .reject {
  background: #fff;
  color: #264653;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #2A9D8F;
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: #2A9D8F;
  border: 2px solid #2A9D8F;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #2A9D8F;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3100;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(38,70,83,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.cookie-modal {
  background: #fff;
  color: #264653;
  border-radius: 20px;
  max-width: 420px;
  width: 96vw;
  padding: 36px 24px 28px 24px;
  box-shadow: 0 4px 32px 0 rgba(42,157,143,0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  animation: modalPop 0.33s cubic-bezier(0.39,0.6,0.3,1.32);
  position: relative;
}
@keyframes modalPop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  color: #264653;
  margin-bottom: 12px;
  margin-top: 10px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 5px;
}
.cookie-modal .cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #2A9D8F;
}
.cookie-modal .always-on {
  color: #2A9D8F;
  font-weight: 600;
  margin-left: 5px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #264653;
  cursor: pointer;
  border-radius: 8px;
  padding: 5px;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #2A9D8F;
  color: #fff;
}

/* === GENERAL ELEMENTS === */
::-webkit-input-placeholder { color: #b7bfc6; }
::-moz-placeholder          { color: #b7bfc6; }
:-ms-input-placeholder      { color: #b7bfc6; }
::placeholder              { color: #b7bfc6; }

input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 10px 16px;
  border: 1.5px solid #c4c9cc;
  border-radius: 9px;
  margin-bottom: 16px;
  width: 100%;
  outline: none;
  font-size: 1.1rem;
  background: #F4F4F4;
  transition: border-color 0.2s;
}
input:focus, textarea:focus {
  border-color: #2A9D8F;
}

.section img {
  border-radius: 12px;
  max-width: 80px;
  margin-bottom: 9px;
}

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

@media (max-width: 768px) {
  .section, section {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 6px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .features-grid > div, .card {
    padding: 18px;
    min-width: unset;
    border-radius: 14px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  .footer-contact {
    font-size: 0.98rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .section, section {
    padding: 16px 2px;
  }
  .footer-contact p {
    font-size: 0.92rem;
  }
  .btn-primary, .cookie-banner button {
    font-size: 0.96rem;
    padding: 12px 18px;
  }
}

/* === UTILITIES & MODERN BOLD === */
.shadow-bold {
  box-shadow: 0 6px 28px 0 rgba(42,157,143,0.15), 0 1.5px 12px 0 rgba(38,70,83,0.05);
}
.rounded {
  border-radius: 14px;
}

/* Geometric accent for modern bold — optional accent bar for cards */
.card-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 5px;
  background: #2A9D8F;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

/* Micro-interaction for cards */
.card,
.features-grid > div {
  transition: box-shadow 0.16s, border-color 0.21s, transform 0.18s;
}
.card:hover, .features-grid > div:hover {
  box-shadow: 0 6px 28px 0 rgba(38,70,83,0.11);
  transform: translateY(-2px) scale(1.02);
  border-color: #2A9D8F;
}

/* Highlighted tags in blog */
.features-grid span {
  background: #2A9D8F;
  color: #fff;
  border-radius: 80px;
  font-size: 0.9rem;
  padding: 3px 15px;
  font-weight: 700;
  margin-top: 12px;
  display: inline-block;
}

/* List stylings */
.section ul {
  list-style-type: disc;
  padding-left: 1.1em;
}
.section ol {
  list-style-type: decimal;
  padding-left: 1.2em;
}

/* High-contrast for callouts */
.cta-section, .cta-section p {
  color: #fff !important;
  background: #2A9D8F;
  border-radius: 14px;
  padding: 12px 20px;
  margin-top: 16px;
}
.cta-section a {
  color: #fff;
  text-decoration: underline;
}

/* Remove gaps after sections (first/last-child) */
section:last-child, .section:last-child {
  margin-bottom: 0;
}

/* === VISUAL BOLDNESS === */
h1, h2, h3 {
  letter-spacing: -.01em;
  font-weight: 800;
}

/* === MISC === */
::-webkit-scrollbar {
  width: 8px;
  background: #F4F4F4;
}
::-webkit-scrollbar-thumb {
  background: #c4c9cc;
  border-radius: 8px;
}

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