/* RESET & BASELINE - Normalize and Reset 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  line-height: 1.5;
  background: #fcfcfc;
  color: #161616;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #235789;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #38A3A5;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}

/* BRAND COLORS */
:root {
  --color-primary: #235789;
  --color-secondary: #38A3A5;
  --color-accent: #F5F5F5;
  --color-bg-light: #ffffff;
  --color-dark: #161616;
  --color-danger: #e63946;
  --color-success: #00c896;
  --color-vibrant-pink: #ff3e6c;
  --color-vibrant-yellow: #ffe156;
  --color-vibrant-cyan: #23d6df;
  --color-vibrant-purple: #603eff;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(56,163,165,0.06);
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.15rem;
}

p, ul, ol, li {
  color: var(--color-dark);
  font-size: 1.1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}
.text-section ul,
.text-section ol {
  margin-bottom: 20px;
  padding-left: 22px;
  margin-left: 0;
}
.text-section li {
  margin-bottom: 8px;
  list-style: disc inside;
}

/* LAYOUT CONTAINER */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 28px;
  box-shadow: 0 6px 28px 0 rgba(56,163,165,0.15);
  transition: box-shadow 0.24s;
}
@media (max-width: 500px) {
  .section {
    padding: 28px 8px;
    border-radius: 18px;
  }
}

/* Flex Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  position: relative;
  background: var(--color-bg-light);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(56,163,165,0.14);
  margin-bottom: 20px;
  padding: 28px;
  transition: box-shadow 0.25s, transform 0.18s;
  flex: 1 1 270px;
  min-width: 220px;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(56,163,165,.21);
  transform: translateY(-4px) scale(1.03);
  border-color: var(--color-secondary);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fcfcfc;
  border-radius: 20px;
  box-shadow: 0 2px 13px rgba(35,87,137,0.12);
  padding: 20px;
  margin-bottom: 22px;
  border-left: 7px solid var(--color-secondary);
  max-width: 540px;
  color: #10101a;
}
.testimonial-card p {
  color: #10101a;
  line-height: 1.7;
}
.testimonial-card strong {
  color: var(--color-primary);
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Header & NAV */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px 0 rgba(56,163,165,0.07);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 8px;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 34px;
  border-radius: 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 16px 0 rgba(56,163,165,.12);
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.1s;
}
.btn-primary {
  background: var(--color-secondary);
  color: #fff;
  border: 2px solid var(--color-secondary);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-vibrant-pink);
  border-color: var(--color-vibrant-pink);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 5px 18px 0 rgba(255,62,108,.22);
}
.btn-secondary {
  background: #fff;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--color-secondary);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 5px 18px 0 rgba(56,163,165,.19);
}

/* Mobile Menu */
.mobile-menu-toggle {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  margin-left: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.19s, color 0.17s, transform 0.08s;
  z-index: 1101;
}
.mobile-menu-toggle:hover {
  background: var(--color-vibrant-pink);
  color: #fff;
  transform: scale(1.11);
}
@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn-primary {
    margin-left: 0;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: var(--color-vibrant-purple);
  box-shadow: 0 0 44px 0 rgba(56,163,165,0.23);
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.8,.05,.43,1.11);
  z-index: 1400;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-vibrant-pink);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  margin: 24px 0 0 24px;
  align-self: flex-start;
  cursor: pointer;
  z-index: 1500;
  transition: background 0.17s, color 0.12s;
}
.mobile-menu-close:hover {
  background: var(--color-vibrant-yellow);
  color: var(--color-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding: 44px 24px 26px 34px;
  width: 100%;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  padding: 14px 4px 12px 8px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, color 0.18s, transform 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
  transform: translateX(7px) scale(1.04);
}

@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO, CARDS & GRID-LISTS */
.feature-grid,
.product-highlights,
.feature-icons,
.product-cards,
.blog-articles-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}
.feature-grid li, .product-highlights li, .feature-icons li, .blog-articles-overview li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 16px 0 rgba(56,163,165,0.10);
  padding: 24px 18px;
  flex: 1 1 210px;
  min-width: 170px;
  transition: box-shadow 0.18s, transform 0.16s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-grid li:hover, .product-highlights li:hover, .feature-icons li:hover, .blog-articles-overview li:hover {
  box-shadow: 0 7px 34px 0 rgba(35,87,137,0.16);
  transform: translateY(-5px) scale(1.026);
  border: 2px solid var(--color-vibrant-cyan);
}
.product-cards {
  gap: 32px;
}
.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(56,163,165,0.10);
  padding: 26px 20px;
  min-width: 205px;
  flex: 1 1 230px;
  transition: box-shadow 0.16s, transform 0.14s;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.product-card:hover {
  box-shadow: 0 7px 34px 0 rgba(35,87,137,0.16);
  transform: scale(1.03);
  border: 2px solid var(--color-vibrant-yellow);
}

/* BLOG CARDS */
.blog-articles-overview li a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-top: 14px;
  text-decoration: underline;
  transition: color 0.15s, text-decoration 0.09s;
}
.blog-articles-overview li a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

/* Footer */
footer {
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  margin-top: 40px;
}
footer .container {
  padding: 24px 18px;
}
footer .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  opacity: 0.94;
  transition: color 0.16s, opacity 0.11s;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--color-vibrant-yellow);
  opacity: 1;
}
footer .contact-snippet {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  color: #fff;
}
footer .contact-snippet img {
  width: 22px;
  height: 22px;
}
footer .social-links {
  display: flex;
  gap: 14px;
}
footer .social-links img {
  transition: filter 0.18s, transform 0.12s;
  width: 32px;
  height: 32px;
  cursor: pointer;
  filter: brightness(1) drop-shadow(0 1px 14px var(--color-secondary));
}
footer .social-links img:hover {
  filter: brightness(1.30) drop-shadow(0 3px 14px var(--color-vibrant-pink));
  transform: scale(1.12) rotate(-12deg);
}

@media (max-width: 730px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  footer nav,
  footer .contact-snippet,
  footer .social-links {
    gap: 11px;
  }
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--color-vibrant-cyan);
  color: #161616;
  box-shadow: 0 -3px 28px rgba(56,163,165,0.28);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 20px 10px 18px;
  z-index: 2000;
  animation: slideup-cookie 0.5s ease-in forwards;
}
@keyframes slideup-cookie {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent__text {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  max-width: 480px;
  line-height: 1.4;
}
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: 17px;
  border: none;
  padding: 10px 24px;
  margin: 0 4px;
  cursor: pointer;
  min-width: 120px;
  transition: background 0.20s, color 0.14s, transform .12s;
}
.cookie-btn.accept {
  background: var(--color-success);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: var(--color-vibrant-pink);
  color: #fff;
  transform: scale(1.07);
}
.cookie-btn.reject {
  background: var(--color-danger);
  color: #fff;
}
.cookie-btn.reject:hover {
  background: var(--color-vibrant-yellow);
  color: #161616;
  transform: scale(1.07);
}
.cookie-btn.settings {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-secondary);
}
.cookie-btn.settings:hover {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
  transform: scale(1.07);
}

@media (max-width: 600px) {
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 17px 6px 16px;
    font-size: 0.96rem;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(40,40,40,0.57);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px 28px;
  box-shadow: 0 7px 38px 0 rgba(35,87,137,0.22);
  width: 95%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: popup-in 0.28s cubic-bezier(.51,1.44,.74,1.06);
}
@keyframes popup-in {
  from { transform: scale(0.87) translateY(32px); opacity:0; }
  to { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--color-danger);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.35rem;
  cursor: pointer;
  transition: background 0.15s, color 0.10s;
  z-index: 2110;
}
.cookie-modal-close:hover {
  background: var(--color-vibrant-yellow);
  color: var(--color-dark);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.cookie-category-toggles {
  display: flex;
  align-items: center;
  gap: 13px;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: var(--color-accent);
  border-radius: 20px;
  transition: background .18s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--color-secondary);
}
.toggle-slider:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
  box-shadow: 0 1px 5px 0 rgba(56,163,165,0.20);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-btns {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

@media (max-width: 545px) {
  .cookie-modal {
    padding: 23px 8px 16px 8px;
  }
}

/* FORM SPACING */
form,
.text-section ul {
  margin-bottom: 24px;
}
input,
textarea,
select {
  border-radius: 7px;
  border: 1.8px solid var(--color-secondary);
  padding: 12px 13px;
  font-size: 1rem;
  margin-bottom: 16px;
  width: 100%;
  transition: border 0.15s;
  font-family: 'Open Sans', Arial, sans-serif;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-vibrant-pink);
  outline: none;
}

/* ANIMATIONS/MICROINTERACTIONS */
.btn-primary, .btn-secondary, .product-card, .feature-grid li, .blog-articles-overview li, .feature-icons li {
  transition: box-shadow 0.19s, transform 0.15s, background 0.16s, color 0.13s;
}

/* RESPONSIVE */
@media (max-width: 1023px) {
  .container {
    max-width: 98vw;
    padding: 0 6px;
  }
  .feature-grid,
  .product-highlights,
  .feature-icons,
  .product-cards,
  .blog-articles-overview {
    gap: 19px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.44rem; }
  footer .container { padding: 16px 7px; }
}
@media (max-width: 700px) {
  .feature-grid,
  .product-highlights,
  .feature-icons,
  .product-cards,
  .blog-articles-overview {
    flex-direction: column;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 19px;
    min-width: 0;
  }
  .card, .product-card {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 604px) {
  header .container {
    padding: 9px 4px;
  }
  .btn-primary, .btn-secondary {
    padding: 13px 14px;
    font-size: 1rem;
    min-width: 90px;
  }
  .testimonial-card {
    max-width: 100%;
    font-size: 1rem;
  }
  h1, h2, h3 { margin-bottom: 10px; }
}

/* Utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }

/* Scrollbar Styling for vibrant feel */
::-webkit-scrollbar { width: 8px; background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--color-secondary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }

/* High energy accent bars (e.g. under h1) */
h1, h2 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  height: 5px;
  width: 70px;
  background: var(--color-vibrant-pink);
  border-radius: 3px;
  margin-top: 10px;
  margin-bottom: 8px;
}

/* Hide accent bar on very small screens */
@media (max-width: 500px) {
  h1::after, h2::after { width: 32px; height: 4px; }
}

/* VIBRANT ENERGETIC EMBELLISHMENTS */
.feature-grid li:hover,
.product-highlights li:hover,
.product-card:hover,
.blog-articles-overview li:hover {
  border-color: var(--color-vibrant-pink);
  background: #fffbe7;
  color: #161616;
}

/* Vibrant shadow for elevated cards */
.card:hover, .product-card:hover {
  box-shadow: 0 7px 34px 0 var(--color-vibrant-cyan), 0 0px 3px rgba(0,0,0,0.02);
}

/* Z-index helpers */
header, .mobile-menu, .mobile-menu-toggle, .cookie-consent, .cookie-modal-overlay {
  z-index: 2000;
}

/* Accessible Focus for Keyboard Navigation */
a:focus,
button:focus,
.btn-primary:focus,
.btn-secondary:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2.5px solid var(--color-vibrant-pink);
  outline-offset: 1px;
}

/* Misc Fixes (ensure no overlapping and spacing is robust) */
.section + .section {
  margin-top: 0;
}
.content-wrapper > * + * {
  margin-top: 0;
}

/* Spacing for all list-based components (margin/gap) */
.feature-grid li,
.product-highlights li,
.product-cards .product-card,
.blog-articles-overview li,
.feature-icons li,
.card {
  margin-bottom: 20px;
}

.product-highlights, .feature-grid, .product-cards, .blog-articles-overview {
  margin-bottom: 20px;
}

/* Ensure absolutely NO grid or columns or break-inside properties are used! */
