/* CSS 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, 
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;
}

/* 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;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  background: #F7F6F1;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.25em;
}
strong {
  font-weight: 600;
}
a {
  color: #24577A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD966;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* TYPOGRAPHY -------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #24577A;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}
p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.7;
}

.text-section h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #24577A;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 1.125rem;
}

/* LAYOUT -------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

footer .content-wrapper,
footer .container {
  padding-top: 32px;
  padding-bottom: 32px;
}

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

.text-section {
  margin-top: 0;
  margin-bottom: 8px;
}

/* CARD AND FLEX LAYOUTS -------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(36, 87, 122, 0.05);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px rgba(36, 87, 122, 0.09);
}
.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: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(36, 87, 122, 0.07);
  border: 1px solid #eee;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 0;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #24577A;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* PRODUCT & BLOG LISTS -------------------------------------------------- */
.product-list, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.product-card, .blog-article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(36,87,122,0.06);
  padding: 24px 20px;
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid #ececec;
  transition: box-shadow 0.15s, border 0.15s;
}
.product-card h3 span, .blog-article h3 span {
  font-weight: 400;
  color: #24577A;
  font-size: 1rem;
}
.product-card:hover, .blog-article:hover {
  border: 1px solid #FFD966;
  box-shadow: 0 4px 20px rgba(36,87,122,0.10);
}

/* BUTTONS & INTERACTIVES -------------------------------------------------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #24577A;
  color: #fff;
  border-radius: 30px;
  padding: 13px 36px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(36,87,122,0.10);
  border: none;
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cta-button:hover, .cta-button:focus {
  background: #FFD966;
  color: #24577A;
  box-shadow: 0 4px 16px rgba(36, 87, 122, 0.15);
}
button, .button {
  min-width: 108px;
  min-height: 40px;
  border-radius: 24px;
  padding: 0 18px;
  background: #fff;
  color: #24577A;
  border: 1px solid #24577A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.16s, background 0.16s, border 0.16s;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #FFD966;
  color: #24577A;
  border: 1px solid #FFD966;
}

/* NAVIGATION -------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0 12px 0;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #24577A;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 18px;
  transition: background 0.14s, color 0.14s;
}
header nav a:hover, header nav a:focus {
  background: #F7F6F1;
  color: #FFD966;
}
header nav a.cta-button {
  margin-left: auto;
  background: #FFD966;
  color: #24577A;
  padding: 8px 26px;
  font-weight: bold;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 10px rgba(36,87,122,0.08);
}
header nav a.cta-button:hover, header nav a.cta-button:focus {
  background: #24577A;
  color: #fff;
}
header nav a img {
  height: 40px;
  width: auto;
  margin-right: 5px;
  margin-left: 0;
  vertical-align: middle;
}

/* MOBILE MENU -------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 22px;
  right: 24px;
  background: #FFD966;
  color: #24577A;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  padding: 5px 16px;
  z-index: 106;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(36,87,122,0.08);
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #24577A;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 24px rgba(36, 87, 122, 0.09);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.55,0,0.25,1);
  z-index: 125;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: #FFD966;
  color: #24577A;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  padding: 7px 18px;
  margin: 22px 0 10px 22px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 2px 10px rgba(36,87,122,0.10);
  transition: background 0.20s, color 0.20s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #24577A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.17rem;
  color: #24577A;
  padding: 10px 0;
  font-weight: 500;
  border-radius: 7px;
  transition: background 0.14s, color 0.14s;
  min-width: 160px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7F6F1;
  color: #FFD966;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 900px) {
  .container {
    max-width: 100%;
  }
  .card-container, .content-grid, .product-list, .blog-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .section {
    margin-bottom: 38px;
    padding: 28px 8px;
  }
  h1 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 1.13rem;
    margin-bottom: 8px;
  }
  h3 {
    font-size: 1rem;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .product-list, .blog-list, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 16px;
  }
  .product-card, .blog-article, .card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 12px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  .testimonial-card {
    padding: 16px 10px;
    min-width: 0;
    margin-bottom: 12px;
    width: 100%;
  }
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 4px;
  }
  .section {
    padding: 18px 0;
  }
  h1 { font-size: 1.11rem; }
}

/* ICON & UL LISTS -------------------------------------------------- */
ul li, ol li {
  list-style: none;
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.64;
}
ul li img {
  width: 27px;
  height: 27px;
  background: #FFD96630;
  border-radius: 50%;
  padding: 2px;
  margin-right: 4px;
  object-fit: scale-down;
}

ol {
  padding-left: 24px;
  margin-bottom: 12px;
}

/* MODAL & OVERLAYS -------------------------------------------------- */
/* Cookie Consent Banner -------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #24577A;
  box-shadow: 0 -4px 24px rgba(36, 87, 122, 0.10);
  border-top: 1px solid #ECECEC;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 10px 18px 10px;
  z-index: 150;
  opacity: 1;
  transition: transform 0.3s cubic-bezier(0.56,0.1,0.09,1), opacity 0.32s;
  animation: bannerIn 0.54s 1 cubic-bezier(0.65,0,0.35,1);
}
@keyframes bannerIn {
  0% {transform: translateY(100%); opacity:0}
  70% {transform: translateY(-10px); opacity:0.6}
  100% {transform: translateY(0); opacity:1}
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  margin: 0 0 6px 0;
  font-size: 1rem;
  color: #24577A;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.cookie-banner .cookie-accept {
  background: #24577A;
  color: #fff;
  border-radius: 18px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 22px;
  margin-right: 5px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #FFD966;
  color: #24577A;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #24577A;
  border-radius: 18px;
  border: 1px solid #24577A;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 21px;
  cursor: pointer;
  transition: background 0.14s, color 0.13s;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #FFD966;
  color: #24577A;
  border: 1px solid #FFD966;
}
.cookie-banner .cookie-settings {
  background: #F7F6F1;
  color: #24577A;
  border-radius: 14px;
  border: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 9px 16px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #FFD966;
  color: #24577A;
}

/* Cookie Modal -------------------------------------------------- */
.cookie-modal-backdrop {
  z-index: 191;
  position: fixed;
  inset: 0;
  background: rgba(36,87,122,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.22s;
}
.cookie-modal {
  background: #fff;
  color: #24577A;
  border-radius: 22px;
  max-width: 410px;
  width: 92vw;
  box-shadow: 0 12px 40px rgba(36,87,122,0.16);
  padding: 36px 22px 26px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 199;
  animation: modalIn 0.34s cubic-bezier(.7,.01,.33,1);
}
@keyframes modalIn {
  0% { transform: translateY(40px) scale(0.91); opacity: 0 }
  100% { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h3 {
  font-size: 1.17rem;
  margin-bottom: 6px;
  color: #24577A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
}
.cookie-modal label {
  font-size: 1rem;
  color: #24577A;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 11px;
}
.cookie-modal input[type=checkbox] {
  accent-color: #24577A;
  width: 22px;
  height: 22px;
  margin-right: 7px;
  border-radius: 6px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 17px;
  right: 18px;
  color: #24577A;
  background: #F7F6F1;
  font-size: 1.3rem;
  border-radius: 9px;
  padding: 3px 12px;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.12s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  background: #FFD966;
  color: #24577A;
}

/* FOOTER -------------------------------------------------- */
footer {
  background: #fff;
  border-top: 1px solid #ECECEC;
  margin-top: 30px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 42px;
  justify-content: flex-start;
  padding-top: 28px;
  padding-bottom: 30px;
}
footer nav {
  display: flex;
  flex-direction: column;
  flex: 1 1 180px;
  gap: 13px;
}
footer nav a {
  color: #24577A;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.12s;
}
footer nav a:hover, footer nav a:focus {
  color: #FFD966;
  text-decoration: underline;
}
footer .text-section {
  flex: 2 1 320px;
  color: #222;
  font-size: 0.99rem;
  padding-right: 10px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
}
.footer-social img {
  width: 32px;
  height: 32px;
  background: #FFD96630;
  border-radius: 50%;
  transition: box-shadow 0.16s;
  cursor: pointer;
  padding: 6px;
}
.footer-social img:hover, .footer-social img:focus {
  box-shadow: 0 2px 8px #FFD96650;
}

@media (max-width: 1020px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  footer nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (max-width: 700px) {
  footer .content-wrapper {
    gap: 7px;
    padding-top: 7px;
    padding-bottom: 8px;
  }
  .footer-social {
    gap: 7px;
  }
}

/* UTILITIES -------------------------------------------------- */
.bg-primary { background: #24577A; color: #fff; }
.bg-accent { background: #F7F6F1; color: #24577A; }
.bg-secondary { background: #FFD966; color: #24577A; }
.text-primary { color: #24577A; }
.text-secondary { color: #FFD966; }
.text-accent { color: #F7F6F1; }
.w-100 { width: 100%; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.rounded { border-radius: 12px; }
.shadow-sm { box-shadow: 0 1px 6px rgba(36,87,122, 0.08); }
.shadow-md { box-shadow: 0 2px 12px rgba(36,87,122, 0.11); }

/* SCROLLBAR FOR MINIMALISM */
::-webkit-scrollbar {
  width: 6px;
  background: #F7F6F1;
}
::-webkit-scrollbar-thumb {
  background: #FFD96690;
  border-radius: 18px;
}

/* TRANSITIONS & EFFECTS */
.card, .product-card, .blog-article, .testimonial-card, .footer-social img, .cta-button, button, .cookie-banner, .cookie-banner button, .cookie-modal {
  transition: box-shadow 0.18s, background 0.13s, border 0.13s, color 0.12s, transform 0.12s;
}

/* FOCUS STYLES -------------------------------------------------- */
a:focus, button:focus, .cta-button:focus, .cookie-banner button:focus {
  outline: 2px solid #FFD966;
  outline-offset: 2px;
  z-index: 4;
}

/* HIDE OUTLINES FOR CLICK, ONLY SHOW ON TAB NAVIGATION */
:focus:not(:focus-visible) {
  outline: none !important;
}

/* STYLING EMPTY STATES & MISC -------------------------------------------------- */
.empty-state, .no-results {
  min-height: 80px;
  color: #24577A;
  background: #FFD96630;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* END OF FILE */
