/* 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #E7ECEF;
  color: #134074;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #134074;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5588A3;
}
ul, ol {
  padding-left: 24px;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
/* BRAND FONTS */
h1, h2, h3, h4, h5, h6, .cta-button, .category-cards a, nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
}

/* TYPOGRAPHY SCALE */
h1 {
  font-size: 2.4rem;
  line-height: 1.18;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.text-section, p, li {
  font-size: 1rem;
  line-height: 1.6;
}
/* SECTION STYLES */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* GRADIENT MODERN BGs */
section {
  background: linear-gradient(110deg, #E7ECEF 60%, #5588A3 100%);
  border-radius: 24px;
  margin-bottom: 42px;
  box-shadow: 0 6px 18px rgba(19,64,116,0.06);
  transition: box-shadow 0.3s;
}
section:hover {
  box-shadow: 0 10px 32px rgba(19,64,116,0.11);
}
footer {
  background: linear-gradient(90deg, #E7ECEF 70%, #5588A3 100%);
  color: #134074;
  padding: 36px 0 24px 0;
  margin-top: 58px;
}
footer img[alt="PeliPulma"] {
  width: 140px;
  margin-bottom: 20px;
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(19,64,116,0.09);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.32s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(19,64,116,0.14);
  transform: translateY(-2px) scale(1.015);
}
.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: 12px;
  padding: 24px 22px 22px 22px;
  background: #fff;
  color: #134074;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(19,64,116,0.08);
  margin-bottom: 20px;
  margin-right: 0;
  margin-left: 0;
  position: relative;
  min-width: 250px;
}
.testimonial-card p {
  font-size: 1.06rem;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #5588A3;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.category-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  margin-bottom: 14px;
}
.category-cards a {
  display: inline-block;
  padding: 10px 22px;
  background: #5588A3;
  color: #fff;
  border-radius: 16px;
  font-size: 1.06rem;
  font-weight: 700;
  box-shadow: 0 0px 7px rgba(86,136,163,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
}
.category-cards a:hover, .category-cards a:focus {
  background: #134074;
  color: #E7ECEF;
}

/* CTA BUTTON */
.cta-button {
  display: inline-block;
  background: linear-gradient(100deg, #134074 75%, #5588A3 100%);
  color: #fff;
  border: none;
  border-radius: 44px;
  padding: 14px 36px;
  font-size: 1.16rem;
  font-weight: 700;
  box-shadow: 0 5px 16px rgba(86,136,163,0.10);
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.22s, transform 0.19s, box-shadow 0.22s;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(100deg, #5588A3 65%, #134074 100%);
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 12px 24px rgba(19,64,116,0.13);
  color: #E7ECEF;
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(19,64,116,0.05);
  padding: 0;
  z-index: 30;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
nav a {
  color: #134074;
  font-weight: 600;
  font-size: 1.04rem;
  border-radius: 12px;
  padding: 8px 14px;
  transition: background 0.16s, color 0.16s;
}
nav a:hover, nav a:focus {
  background: #E7ECEF;
  color: #5588A3;
}
header .cta-button {
  margin-left: 24px;
  margin-right: 0;
  padding: 10px 26px;
  font-size: 1.05rem;
}
header img[alt="PeliPulma"] {
  width: 94px;
  margin-right: 20px;
}

/* FOOTER */
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 250px;
  flex: 1;
  margin-bottom: 20px;
}
footer ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
}
footer nav {
  display: flex;
  gap: 14px;
  opacity: 0.8;
}
footer a {
  color: #134074;
  font-weight: 600;
}
footer a:hover {
  color: #5588A3;
  text-decoration: underline;
}
footer h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #134074;
  font-size: 1.18rem;
}
footer .text-section p {
  font-size: 0.99rem;
  color: #134074;
}

/* ULTRALIGHT CONTAINERS UTILITY */
.text-section {
  margin-bottom: 8px;
}

/* ICONS IN LISTS */
ul li img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

/* COOKIE CONSENT BANNER & MODAL (HTML is assumed to exist elsewhere) */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #134074;
  color: #fff;
  padding: 19px 18px 17px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -6px 24px rgba(19,64,116,0.10);
  z-index: 2000;
  gap: 18px;
  animation: slideUpFadeIn 0.54s cubic-bezier(0.23,1,0.32,1);
}
@keyframes slideUpFadeIn {
  0% { transform: translateY(40px); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 0.99rem;
  text-align: center;
  color: #fff;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 6px;
}
.cookie-buttons .cookie-btn {
  padding: 9px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.97rem;
  background: #5588A3;
  color: #fff;
  transition: background 0.18s, color 0.18s;
  border: none;
}
.cookie-buttons .cookie-btn:hover, .cookie-buttons .cookie-btn:focus {
  background: #fff;
  color: #134074;
}
.cookie-buttons .cookie-settings {
  background: #E7ECEF;
  color: #134074;
}
.cookie-buttons .cookie-settings:hover, .cookie-buttons .cookie-settings:focus {
  background: #5588A3;
  color: #fff;
}
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(19, 64, 116, 0.44);
  z-index: 2110;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s cubic-bezier(0.42,0,0.58,1);
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #134074;
  max-width: 430px;
  width: 92vw;
  padding: 32px 28px 27px 28px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(19,64,116,0.17);
  animation: slideDownFadeIn 0.4s cubic-bezier(0.23,1,0.32,1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2120;
}
@keyframes slideDownFadeIn {
  0% { transform: translateY(-30px); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.23rem;
  font-weight: 700;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category {
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #E7ECEF;
  border-radius: 14px;
  transition: background 0.2s;
}
.cookie-modal .switch input:checked + .slider {
  background-color: #5588A3;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.20s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-btn {
  font-weight: 700;
  font-size: 1.06rem;
  background: #134074;
  color: #fff;
  border-radius: 22px;
  padding: 9px 24px;
  margin-right: 8px;
  margin-top: 8px;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .cookie-btn.secondary {
  background: #E7ECEF;
  color: #134074;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #5588A3;
  color: #fff;
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 16px;
  font-size: 2.1rem;
  background: none;
  color: #134074;
  z-index: 205;
  padding: 3px 10px;
  border-radius: 9px;
  border: 2px solid transparent;
  transition: background 0.14s, border-color 0.14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E7ECEF;
  border-color: #5588A3;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(19,64,116,0.98);
  color: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100vw);
  transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.13rem;
  background: none;
  color: #fff;
  border: none;
  align-self: flex-end;
  margin: 21px 30px 9px 0;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 1220;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #E7ECEF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin: 29px 48px 0 32px;
  width: 85vw;
  max-width: 410px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.19rem;
  font-weight: 700;
  border-radius: 18px;
  padding: 12px 0 11px 6px;
  transition: background 0.16s, color 0.16s;
  min-width: 100px;
  min-height: 36px;
  display: inline-block;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E7ECEF;
  color: #134074;
}

/* MEDIA QUERIES & RESPONSIVE */
@media (max-width: 1024px) {
  footer .container {
    gap: 18px;
    flex-direction: column;
  }
}
@media (max-width: 950px) {
  .container {
    max-width: 95vw;
  }
  .card-container, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 820px) {
  section {
    padding: 27px 5px;
  }
  .category-cards {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 14px;
  }
  h1 {
    font-size: 1.44rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  nav {
    flex-wrap: wrap;
    gap: 9px;
  }
  header .cta-button {
    display: none;
  }
  .card {
    padding: 18px 10px;
  }
  .testimonial-card {
    padding: 15px 8px 12px 12px;
    min-width: 0;
    font-size: 0.97rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .card-container, .content-grid {
    gap: 8px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container nav {
    display: none;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  section {
    border-radius: 14px;
  }
}
@media (max-width: 520px) {
  section, footer {
    padding-left: 0;
    padding-right: 0;
  }
  h1 {
    font-size: 1.15rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 10px 18px;
  }
  .mobile-nav {
    max-width: 390px;
    margin: 13px 12px 0 8px;
  }
  .category-cards a {
    padding: 8px 12px;
    font-size: 0.989rem;
  }
}

/* UTILITY CLASSES */
.mt-16 { margin-top: 16px !important;}
.mb-16 { margin-bottom: 16px !important;}
.mt-24 { margin-top: 24px !important;}
.mb-24 { margin-bottom: 24px !important;}

/* FLOATING UTILITIES */
.z-10 { z-index: 10 !important; }
.z-20 { z-index: 20 !important; }

/* PRINT BASICS */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
  section, .container, .content-wrapper {
    box-shadow: none !important;
    background: #fff !important;
    color: #222 !important;
  }
}

/* HIDE/SHOW UTILS */
.d-none { display: none !important; }

/* FOCUS STYLES */
*:focus-visible {
  outline: 2px solid #5588A3;
  outline-offset: 2px;
  transition: outline 0.13s;
}

/* MICRO-INTERACTIONS */
.card:active, .cta-button:active, .category-cards a:active {
  transform: scale(0.98);
  filter: brightness(0.96);
}

/* BRAND COLOR UTILS */
.text-primary   { color: #134074 !important; }
.text-secondary { color: #5588A3 !important; }
.text-accent    { color: #E7ECEF !important; }
.bg-primary     { background: #134074 !important; }
.bg-secondary   { background: #5588A3 !important; }
.bg-accent      { background: #E7ECEF !important; }

/* VISUAL BREAKS & WHITE SPACE */
hr {
  border: none;
  border-top: 1px solid #E7ECEF;
  margin: 24px 0;
}

/* END OF CSS */
