/* 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, 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-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F9FB;
  color: #16314D;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #36B37E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #16314D;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
  padding-left: 0;
}
li {
  margin-bottom: 12px;
  list-style: disc;
}
.container {
  max-width: 1160px;
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* TYPOGRAPHY */
h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  color: #16314D;
  line-height: 1.1;
}
h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #36B37E;
  line-height: 1.15;
}
h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #16314D;
}
h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 10px;
}
p, .subheadline {
  font-size: 1.06rem;
  margin-bottom: 12px;
}
.subheadline {
  color: #36B37E;
  font-weight: 500;
}
strong, b {
  font-weight: 700;
  color: #16314D;
}

/* LAYOUT SECTIONS & SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(52, 183, 126, 0.09);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(52, 183, 126, 0.07);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  flex: 1 1 270px;
}
.card:last-child {
  margin-bottom: 0;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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: 10px;
  background: #F6F9FB;
  border-left: 6px solid #36B37E;
  padding: 20px 24px;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(22,49,77,.07);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(54,179,126,0.10);
  transform: translateY(-2px) scale(1.02) rotate(-1deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.brand-grid, .product-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.brand-card, .product-tile {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(22,49,77,0.11);
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  flex: 1 1 260px;
  transition: transform 0.16s, box-shadow 0.16s;
}
.brand-card:hover, .product-tile:hover {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 6px 18px rgba(22,49,77,0.14);
  background: #F6F9FB;
}
.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-bottom: 12px;
}
.topic-filters {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topic-filters button {
  background: #36B37E;
  color: #fff;
  border: 0;
  border-radius: 24px;
  padding: 7px 22px;
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  margin-right: 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(54,179,126,0.10);
  transition: background 0.14s, transform 0.18s;
}
.topic-filters button:hover,
.topic-filters button:focus {
  background: #16314d;
  color: #fff;
  transform: scale(1.06);
}

/* HEADER & NAVIGATION */
header {
  background: #16314D;
  padding: 0;
  width: 100%;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
header img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.06rem;
  color: #fff;
  opacity: 0.92;
  font-weight: 500;
  transition: color 0.12s, opacity 0.18s;
  padding: 3px 0 3px 0;
}
nav a:hover, nav a:focus {
  color: #36B37E;
  opacity: 1;
}
.cta-primary {
  background: #36B37E;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 12px 36px;
  cursor: pointer;
  margin-left: 32px;
  transition: background 0.15s, box-shadow 0.2s, transform 0.18s;
  box-shadow: 0 2px 8px 0 rgba(54,179,126,0.11);
  position: relative;
  z-index: 2;
}
.cta-primary:focus, .cta-primary:hover {
  background: #16314D;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(54,179,126,0.21);
  transform: scale(1.04) rotate(-2deg);
}
.cta-secondary {
  background: #fff;
  color: #36B37E;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid #36B37E;
  border-radius: 28px;
  padding: 10px 28px;
  margin-top: 12px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.14s, border 0.16s, transform 0.2s;
  box-shadow: 0 1px 3px rgba(54,179,126,0.08);
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #36B37E;
  color: #fff;
  border: 2px solid #16314D;
  transform: scale(1.04);
}

/* BURGER & MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #36B37E;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  box-shadow: 0 2px 10px rgba(54,179,126,0.18);
  z-index: 102;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background 0.14s, transform 0.20s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #16314d;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #16314D;
  z-index: 200;
  transform: translateX(-110vw);
  transition: transform 0.32s cubic-bezier(0.71,0,0.27,1);
  box-shadow: 0 8px 24px rgba(22,49,77,0.12);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: #36B37E;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 201;
  box-shadow: 0 2px 8px #36B37E21;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fff;
  color: #36B37E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 90px;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: 'Oswald', Arial, sans-serif;
  color: #fff;
  font-weight: 500;
  padding: 7px 0;
  transition: color 0.16s, background 0.11s;
  border-radius: 8px;
  min-width: 180px;
  margin-right: 3px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #36B37E;
  color: #fff;
}

/* HERO & FUN EFFECTS */
.section:first-child {
  background: linear-gradient(90deg, #F6F9FB 66%, #36B37E12 100%);
  border-radius: 20px 20px 36px 36px;
  animation: heroPopIn 0.9s cubic-bezier(0.7,0,0.27,1) 0.08s both;
}
@keyframes heroPopIn {
  from { opacity: 0; transform: scale(0.96) translateY(24px) skewY(3deg); }
  to { opacity: 1; transform: none; }
}

/* REVIEW SYSTEM & RATINGS */
.rating-stars {
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
}
.rating-stars img {
  height: 28px;
  width: 28px;
  animation: bounceStar 1s infinite alternate linear;
}
@keyframes bounceStar {
  100% { transform: translateY(-6px) rotate(-14deg); filter: brightness(117%); }
}

/* TESTIMONIAL/OPINIONS */
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 12px;
  justify-content: flex-start;
}
.testimonial-card {
  flex: 1 1 280px;
  min-width: 230px;
  background: #fff;
  color: #16314D;
  border-left: 6px solid #36B37E;
  font-size: 1.07rem;
}
.testimonial-card p {
  font-size: 1.08rem;
  margin-bottom: 6px;
  font-style: italic;
}
.testimonial-card span {
  color: #36B37E;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
}

/* INFOGRAPHICS & SNIPPETS */
.infographic-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0 0 0;
  font-size: 1.05rem;
  color: #16314D;
}
.address-block {
  background: #F6F9FB;
  border-radius: 14px;
  padding: 12px 20px;
  margin-top: 12px;
  font-size: 1.07rem;
}

/* FORMS & MESSAGES */
.confirmation-message {
  background: #36B37E11;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 1.10rem;
  color: #36B37E;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadein 0.6s cubic-bezier(0.8,0,0.3,1) both;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* FOOTER */
footer {
  background: #16314D;
  color: #fff;
  padding: 36px 0 20px 0;
  width: 100%;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 18px;
}
footer a {
  color: #36B37E;
  font-weight: 500;
  font-family: 'Oswald', Arial, sans-serif;
  margin-right: 12px;
  font-size: 1rem;
}
footer nav {
  flex-direction: row;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
footer ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
}
footer ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.07rem;
}
footer img {
  height: 34px;
  width: auto;
  margin-bottom: 11px;
}
footer p {
  font-size: 0.98rem;
  margin: 12px 0 0 0;
  opacity: 0.85;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #16314D;
  color: #fff;
  z-index: 1003;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 26px;
  box-shadow: 0 -8px 24px #16314d1c;
  animation: slideUp 0.54s cubic-bezier(0.62,0,0.39,1) both;
}
@keyframes slideUp {
  from {transform: translateY(66px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-banner-text {
  font-size: 1rem;
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  padding: 9px 25px;
  cursor: pointer;
  box-shadow: 0 2px 9px #36B37E13;
  margin-right: 4px;
  transition: background 0.14s, color 0.13s, transform 0.16s;
}
.cookie-btn.accept {
  background: #36B37E; color: #fff;
}
.cookie-btn.accept:hover { background: #39CC94;}
.cookie-btn.reject {
  background: #fff; color: #16314D;
  border: 2px solid #36B37E;
}
.cookie-btn.reject:hover { background: #16314D; color: #fff; }
.cookie-btn.settings {
  background: #36B37E11; color: #36B37E;
}
.cookie-btn.settings:hover { background: #16314D; color: #fff; }

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left:0; top:0; right:0; bottom:0;
  background: #16314d70;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFade 0.4s both;
}
@keyframes modalFade {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: #16314D;
  border-radius: 22px;
  box-shadow: 0 16px 48px #16314d31;
  padding: 44px 32px 30px 32px;
  min-width: 300px;
  max-width: 97vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popIn 0.3s cubic-bezier(0.68,-0.55,0.27,1.55) both;
}
@keyframes popIn {
  from { transform: scale(0.92); opacity: .6;}
  to { transform: scale(1); opacity: 1;}
}
.cookie-modal h3 {
  font-size: 1.28rem;
  margin-bottom: 8px;
  color: #36B37E;
}
.cookie-category {
  display: flex; align-items: center; margin-bottom: 10px; gap: 12px;
}
.cookie-category label {
  font-size: 1rem; font-family: 'Roboto', Arial, sans-serif; color: #16314D; font-weight: 500;
}
.cookie-category input[type=checkbox],
.cookie-category input[type=radio] {
  accent-color: #36B37E;
  margin-right: 6px;
  width: 22px; height: 22px;
}
.cookie-category.essential input {
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}

/* ANIMATION - BUTTON WIGGLE */
.cta-primary, .cta-secondary, .topic-filters button, .cookie-btn {
  will-change: transform;
}
.cta-primary:hover, .cta-secondary:hover, .topic-filters button:hover, .cookie-btn:hover {
  animation: wiggle 0.24s cubic-bezier(0.37,0.01,0.2,1.27) both;
}
@keyframes wiggle {
  0% { transform: scale(1) rotate(0deg);}
  36% { transform: scale(1.04) rotate(-1deg);}
  80% { transform: scale(0.99) rotate(3deg);}
  100% { transform: scale(1) rotate(0deg);}
}

/* TABLES & MISC */
table {width:100%;border-collapse:collapse;margin-bottom:22px;}
th,td {border:1px solid #36B37E30;padding:9px 12px;text-align:left;}
th {background:#36B37E09;color:#16314D;font-family: 'Oswald', Arial, sans-serif;}

/* Utility Classes */
.gap-20 { gap: 20px; }
.text-center { text-align:center; }
.mb-20 { margin-bottom:20px; }

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 1090px) {
  .container {
    padding: 0 9px;
  }
}
@media (max-width: 900px) {
  .brand-grid, .testimonial-slider, .testimonial-list, .product-tiles {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem;}
  h2 { font-size: 1.35rem; }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    height: auto;
  }
  .section {
    margin-bottom: 34px;
    padding: 24px 6px;
    border-radius: 18px;
  }
  .card, .brand-card, .product-tile {
    padding: 16px;
    min-width: 0;
    flex: 1 1 100%;
  }
  .brand-logos {
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .content-grid, .card-container, .testimonial-slider, .testimonial-list, .product-tiles, .brand-grid {
    gap: 12px;
  }
  nav, footer nav {
    gap: 11px;
    flex-wrap: wrap;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 12px 7px;
    font-size: 0.97rem;
    text-align: left;
  }
  .cookie-banner-actions {
    flex-direction: row;
    gap: 8px;
    margin-top: 3px;
  }
}
@media (max-width:600px) {
  h1 { font-size:1.23rem;}
  .container { padding: 0 3px; }
  .brand-logos img, .brand-card img, header img, footer img {
    height: 30px !important;
  }
  .section { margin-bottom:24px; padding: 11px 2px;}
}
@media (max-width: 980px) {
  nav, header nav { display: none; }
  .mobile-menu-toggle { display: flex;}
  .cta-primary { margin-left: 0; }
}
@media (max-width: 480px) {
  .cookie-modal { padding: 18px 5vw 18px 5vw; }
}

/* PRINT STYLES */
@media print {
  header, nav, .mobile-menu-toggle, .mobile-menu, .cta-primary, .cookie-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
  body { background: #fff !important; }
}
