/* CRISP HUB — MODERN_BOLD FLEXBOX 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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F8FAFB;
}
body {
  background: #F8FAFB;
  color: #23456A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #23456A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #F2C94C;
}

/* === BRAND FONTS === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  color: #23456A;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #23456A;
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 10px;
  list-style: disc inside;
  line-height: 1.7;
}

strong {
  font-weight: 700;
  color: #23456A;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(35, 69, 106, 0.03), 0 1.5px 10px 0 rgba(242, 201, 76, 0.03);
}

.hero {
  background: #23456A;
  color: #fff;
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero .content-wrapper {
  background-color: transparent;
}
.hero h1, .hero p {
  color: #fff;
}
.hero h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.125rem;
  max-width: 680px;
  margin-bottom: 26px;
}
.hero .primary-cta {
  margin-top: 10px;
}

/* CTA Sections */
.cta-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F2C94C;
  border-radius: 20px;
  color: #23456A;
  text-align: center;
  box-shadow: 0 6px 36px 0 rgba(35, 69, 106, 0.07), 0 1.5px 10px 0 rgba(255,223,90,0.08);
}
.cta-section h2 {
  color: #23456A;
}
.cta-section p {
  color: #23456A;
}
.cta-section .primary-cta,
.cta-section .secondary-cta {
  margin: 18px 10px 0 10px;
}

/* === HEADER NAV === */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(35, 69, 106, 0.07);
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #23456A;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background 0.18s, color 0.17s;
}
.main-nav a:hover {
  background: #F2C94C;
  color: #23456A;
}
.main-nav a img {
  height: 38px;
  margin-right: 7px;
  vertical-align: middle;
}
.primary-cta {
  color: #23456A;
  background: #F2C94C;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .5px;
  box-shadow: 0 2px 10px 0 rgba(35,69,106,0.10);
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.16s, color 0.13s, box-shadow 0.22s;
  outline: none;
  display: inline-block;
}
.primary-cta:hover, .primary-cta:focus {
  background: #23456A;
  color: #fff;
  box-shadow: 0 2px 18px 0 rgba(35, 69, 106, 0.14);
}
.secondary-cta {
  color: #23456A;
  background: #fff;
  border: 2px solid #23456A;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 7px;
  transition: background 0.16s, color 0.16s, border-color 0.2s;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #23456A;
  color: #fff;
  border-color: #F2C94C;
}

/* === MOBILE NAV === */
.mobile-menu-toggle {
  display: none;
  background: #F2C94C;
  color: #23456A;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 2rem;
  font-weight: 900;
  margin: 8px 12px 8px auto;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 8px;
  z-index: 72;
  box-shadow: 0 1px 6px rgba(35,69,106,0.09);
  transition: background .18s, color .19s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #23456A;
}
.mobile-menu-toggle:hover {
  background: #23456A;
  color: #fff;
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #23456A;
  color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.9, .03, .21, .93);
  opacity: 0.99;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin: 20px 28px 10px 0;
  cursor: pointer;
  border-radius: 7px;
  transition: background .17s, color .16s;
  padding: 6px 10px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #F2C94C;
  color: #23456A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
  padding: 18px 36px;
}
.mobile-nav a {
  color: #fff;
  background: transparent;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 16px 14px;
  margin-bottom: 4px;
  border-radius: 7px;
  transition: background .15s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2C94C;
  color: #23456A;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* === PAGES & LAYOUTS === */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 20px;
  border-radius: 18px;
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(35, 69, 106, 0.08);
}
.text-section {
  gap: 18px;
}

/* Flex patterns - as required */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(35,69,106,0.07);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  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: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 10px 0 rgba(35,69,106,0.09);
  min-width: 260px;
  min-height: 180px;
  border: 2px solid #F2C94C;
  color: #23456A;
  margin-bottom: 24px;
}
.testimonial-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.stars {
  color: #F2C94C;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
}
.testimonial-author {
  color: #23456A;
  font-weight: 500;
  font-size: 1rem;
  font-style: italic;
  margin-top: 8px;
}

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

/***** Feature grid *****/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 28px;
  margin-top: 16px;
  margin-bottom: 20px;
}
.feature-grid li {
  background: #F8FAFB;
  border-radius: 13px;
  padding: 24px 22px 16px 22px;
  min-width: 220px;
  flex: 1 0 220px;
  box-shadow: 0 2px 6px 0 rgba(35,69,106,0.06);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #23456A;
  margin-bottom: 0 !important;
  border: 2px solid #F2C94C11;
  transition: box-shadow 0.18s;
}
.feature-grid li img {
  height: 38px;
  width: 38px;
  margin-right: 8px;
}
.feature-grid li:hover,
.feature-grid li:focus {
  box-shadow: 0 2px 18px 0 #F2C94C55;
}

/***** Service and benefits list *****/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 18px;
  margin-bottom: 8px;
}
.service-list li {
  flex: 1 0 260px;
  background: #F8FAFB;
  border-radius: 16px;
  box-shadow: 0 1px 6px 0 rgba(35,69,106,0.05);
  padding: 24px 22px;
  margin-bottom: 0 !important;
  border: 2px solid #23456A11;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #23456A;
}
.service-price {
  background: #F2C94C;
  color: #23456A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 6px;
  display: inline-block;
  padding: 3px 14px;
  font-size: 1rem;
  margin-top: 7px;
  letter-spacing: .5px;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 16px;
  margin-bottom: 10px;
}
.benefits-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(35,69,106,0.03);
  font-size: 1rem;
  color: #23456A;
  font-weight: 500;
  padding: 16px 18px;
  flex: 1 0 180px;
}

/***** Products/discounts *****/
.product-discount-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 18px;
  margin-top: 12px;
}
.product-discount-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 rgba(35,69,106,0.07);
  font-size: 1.09rem;
  color: #23456A;
  padding: 20px 18px 16px 18px;
  min-width: 220px;
  flex: 1 0 220px;
  font-weight: 500;
  margin-bottom: 0 !important;
  border-left: 5px solid #F2C94C;
  transition: box-shadow 0.18s;
}
.discount {
  font-weight: 800;
  color: #ef485a;
  background: #ffeaea;
  margin-left: 6px;
  border-radius: 5px;
  padding: 2px 8px;
  font-size: .98em;
}
.product-discount-list li span {
  display: block;
  color: #2d4766;
  opacity: .86;
  margin-top: 4px;
}
.product-discount-list li:hover {
  box-shadow: 0 2px 24px 0 #F2C94C44;
}

/***** Thank you section *****/
.thank-you-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 9px 0 rgba(35,69,106,0.09);
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.thank-you-section h1 {
  color: #23456A;
  margin-bottom: 16px;
}

/**** Contact details ****/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #F8FAFB;
  border-radius: 11px;
  padding: 28px 18px;
  box-shadow: 0 1px 6px 0 rgba(35,69,106,0.08);
  margin-bottom: 10px;
  font-size: 1.09rem;
  color: #23456A;
}
.contact-details img {
  height: 20px;
  margin-right: 6px;
  vertical-align: middle;
}

/***** Footer ***** /
footer {
  background: #23456A;
  color: #fff;
  padding: 0;
  margin-top: 32px;
}
footer .container {
  padding: 0 16px;
}
footer .content-wrapper {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 28px 8px 28px 8px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 32px 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-menu a {
  color: #fff;
  opacity: .81;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color .18s, opacity .15s;
  margin-bottom: 5px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F2C94C;
  opacity: 1;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.social-links img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 1.5px 6px 0 rgba(242, 201, 76, 0.11);
  transition: background 0.18s;
  cursor: pointer;
}
.social-links img:hover {
  background: #F2C94C;
}
.contact-info {
  display: flex;
  flex-direction: column;
  color: #fff;
  opacity: .84;
  font-size: 1rem;
  gap: 2px;
}
.contact-info img {
  height: 20px;
  margin-right: 6px;
  vertical-align: middle;
}

/***** Cookie Consent Banner *****/
.cookie-banner {
  position: fixed;
  z-index: 2000;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 16px 24px 16px;
  background: #fff;
  box-shadow: 0 -2px 26px 0 rgba(35,69,106,0.13);
  border-top: 4px solid #F2C94C;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.16rem;
  color: #23456A;
  animation: banner-fade-in .48s cubic-bezier(.46,0,.44,1);
}
@keyframes banner-fade-in {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: none; }
}
.cookie-banner .banner-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #23456A;
}
.cookie-banner .banner-actions {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}
.cookie-btn, .cookie-btn-primary {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 7px;
  padding: 11px 28px;
  margin-right: 8px;
  margin-bottom: 0;
  cursor: pointer;
  transition: background .15s, color .14s, border .17s;
}
.cookie-btn-primary {
  background: #F2C94C;
  color: #23456A;
}
.cookie-btn-primary:hover {
  background: #23456A;
  color: #fff;
}
.cookie-btn {
  background: #fff;
  color: #23456A;
  border: 2px solid #23456A;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #23456A;
  color: #fff;
}

/* Cookie modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 69, 106, 0.32);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modal-fade-in .31s;
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  max-width: 480px;
  width: 98vw;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 6px 44px 0 rgba(35,69,106,0.19);
  color: #23456A;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-slide-down .34s cubic-bezier(.59,1.39,.39,.98);
}
@keyframes modal-slide-down {
  from { transform: translateY(-48px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 19px;
  background: transparent;
  border: none;
  color: #23456A;
  font-size: 2rem;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 5px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #F2C94C;
  color: #23456A;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: #23456A;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 20px;
  background: #F2C94C;
  position: relative;
  transition: background .17s;
  cursor: pointer;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1.5px 5px rgba(35,69,106,0.05);
  transition: left .22s cubic-bezier(.5,.9,.7,1.11);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 22px;
  background: #23456A;
}

.cookie-category[data-essential="true"] {
  opacity: 0.6;
  pointer-events: none;
}

.cookie-category-note {
  font-size: 0.9em;
  color: #6b7a90;
  margin-left: 8px;
}

.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 18px;
}

/***** Responsive adjustments *****/
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 992px) {
  .content-wrapper,
  .section {
    padding: 28px 10px;
  }
  .hero {
    padding: 38px 0 24px 0;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.85rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .feature-grid,
  .service-list,
  .product-discount-list,
  .testimonial-slider,
  .content-grid,
  .card-container,
  .benefits-list {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .content-wrapper, .section, .cta-section {
    padding: 18px 4px;
    border-radius: 11px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
  }
  .social-links {
    margin-top: 10px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 6px 18px 6px;
  }
  .hero .container {
    padding-left: 2px;
    padding-right: 2px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start !important;
  }
}
@media (max-width: 500px) {
  .testimonial-card,
  .feature-grid li,
  .service-list li,
  .product-discount-list li,
  .benefits-list li {
    min-width: 0;
    padding: 14px 7px;
    font-size: .95rem;
  }
  .primary-cta, .secondary-cta, .cookie-btn, .cookie-btn-primary {
    width: 100%;
    margin: 8px 0 0 0;
    padding: 11px 8px;
    min-width: unset;
  }
}

/**** Micro-interactions and transitions ****/
.card, .feature-grid li, .service-list li, .product-discount-list li, .benefits-list li, .testimonial-card {
  transition: box-shadow 0.2s, border-color 0.12s;
}
.card:hover, .feature-grid li:hover, .service-list li:hover, .product-discount-list li:hover, .benefits-list li:hover {
  box-shadow: 0 6px 26px 0 #F2C94C33, 0 2px 10px #23456A13;
  border-color: #F2C94C;
}
.primary-cta, .secondary-cta, .cookie-btn, .cookie-btn-primary {
  transition: background 0.19s, color 0.16s, border .18s, box-shadow .22s;
}

/**** Visual utility ****/
.bg-primary { background: #23456A; color: #fff; }
.bg-secondary { background: #F2C94C; color: #23456A; }
.text-primary { color: #23456A; }
.text-secondary { color: #F2C94C; }
.rounded { border-radius: 1.5rem; }
.shadow-sm { box-shadow: 0 1px 6px 0 rgba(35,69,106,0.07); }
.shadow-lg { box-shadow: 0 6px 26px 0 #F2C94C33; }

/**** General spacing helpers ****/
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }

/**** Accessibility ****/
:focus {
  outline: 2px solid #F2C94C;
  outline-offset: 2px;
}

/**** Hide visually but keep for screen readers ****/
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/**** Misc styles ****/
::-webkit-scrollbar {
  width: 8px;
  background: #F8FAFB;
}
::-webkit-scrollbar-thumb {
  background: #23456A33;
  border-radius: 6px;
}

/* === END CRISP HUB CSS === */