/* ===================== CSS RESET & BASE ===================== */
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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F5F6FA;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: #22307F;
  background: #F5F6FA;
  min-height: 100vh;
  font-size: 1rem;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #22307F;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #37A276;
  outline-offset: 2px;
}

/* ===================== TYPOGRAPHY ===================== */
@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, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #22307F;
  margin-bottom: 16px;
  text-transform: none;
}

h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.325rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 14px;
}
p.subheadline {
  font-size: 1.125rem;
  max-width: 640px;
  margin-bottom: 28px;
  color: #22307F;
  font-weight: 500;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: #22307F;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 14px;
  padding-left: 18px;
}
ul {
  list-style: square inside;
}

/* ===================== LAYOUT CONTAINERS ===================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================== HEADER & NAVIGATION ===================== */
header {
  background: #fff;
  border-bottom: 5px solid #37A276;
  box-shadow: 0 4px 16px 0 rgba(34,48,127,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px;
  gap: 30px;
}
header img[alt="Pixel Éclair"] {
  height: 48px;
  flex-shrink: 0;
}
nav {
  display: flex;
  gap: 28px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: #22307F;
  padding: 6px 4px;
  border-radius: 3px;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
nav a:hover,
nav a:focus {
  background: #c6e1db;
  color: #37A276;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: #22307F;
  color: #fff;
  padding: 13px 36px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(34,48,127,0.15);
  cursor: pointer;
  text-transform: uppercase;
  margin-left: 22px;
  transition: background 0.22s, box-shadow 0.22s, color 0.2s, transform 0.15s;
  display: inline-block;
  margin-bottom: 0;
}
.cta-button:hover,
.cta-button:focus {
  background: #37A276;
  color: #fff;
  box-shadow: 0 8px 26px 0 rgba(55,162,118,0.19);
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  background: #37A276;
  border: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #22307F;
  color: #fff;
}

/* ===================== MOBILE NAVIGATION ===================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: #22307F;
  color: #fff;
  z-index: 999;
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(.87,-0.02,.53,1.26);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 36px;
  padding-left: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  padding: 12px 18px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.15s, transform 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #37A276;
  transform: scale(1.18);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin-top: 48px;
  align-items: stretch;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  color: #fff;
  background: none;
  padding: 11px 8px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
  margin-right: 30px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #37A276;
  color: #fff;
}

@media (max-width: 1024px) {
  header .container {
    gap: 10px;
    padding: 14px 12px;
  }
  nav {
    gap: 16px;
  }
  .cta-button {
    margin-left: 0;
    padding: 11px 24px;
  }
}

@media (max-width: 900px) {
  header nav {
    display: none;
  }
  header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  header .container {
    gap:4px;
    padding: 9px 7px;
  }
  .mobile-menu-nav {
    font-size: 1.04rem;
  }
}

/* ===================== MAIN SECTION RULES ===================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 26px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 38px;
    padding: 28px 8px;
  }
}

/* ===================== FLEXBOX UTILITY CONTAINERS ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(35,48,127,0.07);
  margin-bottom: 20px;
  padding: 28px 26px 22px 26px;
  min-width: 260px;
  position: relative;
  flex: 1 1 240px;
  transition: box-shadow 0.23s, transform 0.21s;
}
.card:hover {
  box-shadow: 0 9px 32px 0 rgba(55,162,118,0.14), 0 2px 12px 0 rgba(35,48,127,0.09);
  transform: translateY(-7px) scale(1.022);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}
.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: 22px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===================== FEATURES / LISTS ===================== */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin-top: 16px;
}
.features-list li {
  display: flex;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(34,48,127,0.07);
  align-items: flex-start;
  gap: 18px;
  padding: 18px 18px 16px 18px;
  min-width: 210px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  border-left: 6px solid #37A276;
  transition: box-shadow 0.19s, border-color 0.18s;
}
.features-list li:hover, .features-list li:focus-within {
  box-shadow: 0 7px 24px 0 rgba(55,162,118,0.13);
  border-left: 6px solid #22307F;
}
.features-list img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #F5F6FA;
  padding: 6px;
}
.features-list h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  color: #22307F;
  margin-bottom: 6px;
}
.features-list p {
  font-size: 0.98rem;
  color: #454d72;
}
@media (max-width: 900px) {
  .features-list {
    gap: 14px;
  }
  .features-list li {
    flex: 1 1 155px;
    min-width: 150px;
    padding: 14px 12px 12px 15px;
  }
}
@media (max-width: 700px) {
  .features-list {
    flex-direction: column;
    gap: 14px;
  }
  .features-list li {
    min-width: 0;
    width: 100%;
  }
}

/* ===================== TESTIMONIAL CARDS ===================== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.testimonial-card {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  box-shadow: 0 2px 11px 0 rgba(34,48,127,0.08);
  border-left: 6px solid #37A276;
  min-width: 235px;
  transition: box-shadow 0.21s, border-color 0.19s;
}
.testimonial-card span {
  color: #37A276;
  font-size: 1.3em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  display: block;
  margin-bottom: 8px;
}
.testimonial-card p {
  color: #22307F;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.5;
}
.testimonial-card strong {
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22307F;
  letter-spacing: 0.01em;
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px 0 rgba(55,162,118,0.13);
  border-left: 6px solid #22307F;
}
@media (max-width: 800px) {
  .testimonials {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    width: 100%;
    min-width: 0;
  }
}

/* ===================== CTA + BUTTONS ===================== */
.cta-button {
  box-shadow: 0 3px 18px 0 rgba(55,162,118,0.17);
}

/* Cookie banner, settings, etc */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: #fff;
  border-top: 4px solid #37A276;
  box-shadow: 0 -4px 24px 0 rgba(34,48,127,0.09);
  padding: 28px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: ccbanner-in 0.5s cubic-bezier(.65,-0.04,.53,1.23);
}
@keyframes ccbanner-in {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  color: #22307F;
  font-size: 1.04rem;
  max-width: 580px;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn,
.cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  outline: none;
  border: none;
  border-radius: 14px;
  padding: 10px 22px;
  transition: background 0.22s, color 0.17s, box-shadow 0.19s;
  cursor: pointer;
  font-size: 1.05em;
}
.cookie-btn.accept {
  background: #37A276;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(55,162,118,0.11);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #22307F;
  color: #FFF;
}
.cookie-btn.reject {
  background: #fff;
  color: #22307F;
  border: 2px solid #22307F;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F5F6FA;
  color: #37A276;
  border-color: #37A276;
}
.cookie-settings-btn {
  background: #fff;
  color: #37A276;
  border: 2px solid #37A276;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #37A276;
  color: #fff;
}

/* ===================== COOKIE MODAL POPUP ===================== */
.cookie-modal {
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,48,127,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s;
}
.cookie-modal.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 18px;
  padding: 40px 24px 24px 24px;
  min-width: 320px;
  max-width: 96vw;
  box-shadow: 0 8px 32px 0 rgba(37,50,127,0.17);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: ccpop-in 0.47s cubic-bezier(.73,-0.12,.47,1.37);
}
@keyframes ccpop-in {
  from { opacity: 0; transform: scale(0.88) translateY(60px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 14px;
  background: transparent;
  color: #22307F;
  font-size: 1.68rem;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #37A276;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  letter-spacing:0.03em;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 16px;
  margin-top: 13px;
}
.cookie-category-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04em;
  font-weight: 600;
}
.cookie-checkbox {
  accent-color: #37A276;
}
.cookie-category-desc {
  color:#454d72;
  margin-bottom: 3px;
  font-size: 0.97em;
}
/* Cookie forced always enabled */
.cookie-category-disabled {
  opacity: 0.7;
}

@media (max-width: 600px) {
  .cookie-modal-dialog {
    min-width: 0;
    padding: 25px 7px 20px 13px;
  }
}


/* ===================== SUPPORTIVE SECTIONS & COMPONENTS ===================== */
.text-section {
  padding: 7px 0 0 0;
}
.text-section ul {
  margin-bottom: 12px;
}
.text-section ul li {
  font-size: 1.06rem;
  line-height: 1.55;
  color: #22307F;
  margin-bottom: 8px;
}
.text-section p,
.text-section ul li {
  max-width: 740px;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.faq-list > div {
  background: #f1f4ff;
  border-radius: 13px;
  padding: 18px 24px 14px 18px;
  flex: 1 1 240px;
  min-width: 170px;
  box-shadow: 0 1px 7px 0 rgba(34,48,127,0.09);
  margin-bottom: 20px;
}
.faq-list h3 {
  font-size: 1.08rem;
  color: #22307F;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-list p {
  color: #454d72;
  font-size: 0.97rem;
  margin-bottom: 0;
}
@media (max-width: 820px) {
  .faq-list {
    flex-direction: column;
    gap: 10px;
  }
  .faq-list > div {
    min-width: 0;
  }
}

.success-stories {
  background: #f2fff8;
  border-left: 5px solid #37A276;
  border-radius: 13px;
  padding: 17px 20px 13px 20px;
  margin-bottom: 18px;
  box-shadow: 0 1px 8px 0 rgba(53,194,134,0.07);
}
.success-stories h2 {
  font-size: 1.23em;
  margin-bottom: 7px;
}
.success-stories li {
  font-size: 1rem;
  margin-bottom: 5px;
}

.author-spotlight {
  margin-top: 20px;
}
.author-spotlight h4 {
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
}
.author-spotlight ul {
  margin-left: 20px;
}
.author-spotlight li {
  font-size:0.98rem;
  color: #454d72;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  margin-top: 11px;
}
.posts-grid article {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 rgba(34,48,127,0.06);
  flex: 1 1 260px;
  min-width: 200px;
  padding: 22px 19px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 9px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.posts-grid article:hover{
  box-shadow: 0 10px 24px 0 rgba(34,48,127,0.12);
  transform: scale(1.025);
}
.posts-grid h3 {
  font-size: 1.09em;
  margin-bottom: 3px;
}
.blog-overview {
  padding-bottom: 11px;
}
.categories-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 1.01em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
}
.categories-list li {
  background: #37A276;
  color: #fff;
  border-radius: 10px;
  padding: 5px 13px;
  font-weight: 700;
  font-size: 0.97em;
  margin-bottom: 6px;
}

/* ===================== CONTACT DETAILS & MAP ===================== */
.contact-details ul {
  margin-bottom: 9px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04em;
  margin-bottom: 7px;
  color: #22307F;
}
.contact-details img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #F5F6FA;
}
.google-map {
  background: #f1f4ff;
  border-radius: 10px;
  padding: 12px 16px 9px 12px;
  color: #22307F;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
  font-size: 1.02em;
}
@media (max-width: 600px) {
  .google-map {
    padding: 10px 6px 6px 8px;
  }
}

/* ===================== THANK YOU + NEXT STEPS CAUTION ===================== */
.thank-you-message {
  background: #defbed;
  border-left: 5px solid #37A276;
  border-radius: 10px;
  padding: 13px 16px 10px 14px;
  margin-bottom: 12px;
  color: #22307F;
}
.next-steps-info {
  margin-bottom: 22px;
  color: #445c98;
  font-size: 1.01em;
}
.next-steps-info a {
  color: #37A276;
  font-weight: 700;
  border-bottom: 2px dashed #37A276;
  transition: color 0.15s, border-color 0.15s;
}
.next-steps-info a:hover {
  color: #22307F;
  border-bottom-color: #22307F;
}

/* ===================== FOOTER ===================== */
footer {
  background: #fff;
  border-top: 5px solid #37A276;
  box-shadow: 0 -2px 18px 0 rgba(34,48,127,0.06);
  padding: 30px 0 15px 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
footer img[alt="Pixel Éclair"] {
  height: 40px;
  margin-bottom: 12px;
  flex-shrink: 0;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: #22307F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding-left: 0;
  border-radius: 4px;
  transition: color 0.16s, background 0.12s;
}
footer nav a:hover, footer nav a:focus {
  background: #c6e1db;
  color: #37A276;
}
.footer-contact {
  font-size: 0.98em;
  color: #454d72;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact strong {
  color: #22307F;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 18px 0 13px 0;
    margin-top: 28px;
  }
  footer .container {
    padding: 0 7px;
  }
}

/* ===================== MISC STRUCTURED GEOMETRIC VISUALS ===================== */
hr {
  border: none;
  border-top: 2.5px solid #37A276;
  margin: 38px 0 18px 0;
  width: 56px;
  border-radius: 2px;
}

/* ===================== UTILITY CLASSES ===================== */
.d-none {
  display: none !important;
}
.text-center {
  text-align: center !important;
}
.align-center {
  align-items: center !important;
  justify-content: center !important;
}

/* ===================== FORM ELEMENTS (for future-proofing) ===================== */
input, textarea, select, button {
  font-family: inherit;
  font-size:1em;
  border-radius:9px;
  border:1.5px solid #bbc6ed;
  padding: 8px 14px;
  margin-bottom: 13px;
  background: #fff;
  transition: border 0.15s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #37A276;
  box-shadow: 0 2px 7px 0 #c6e1db;
  outline: none;
}
button {
  cursor: pointer;
}

/* ===================== RESPONSIVITY & FLEX ADJUSTMENTS ===================== */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
  }
  .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size:2rem;
    margin-bottom: 13px;
  }
  h2 {
    font-size:1.23rem;
    margin-bottom:9px;
  }
  h3 {
    font-size:1.03em;
    margin-bottom:7px;
  }
  section {
    margin-bottom: 20px;
    padding: 18px 3px;
    border-radius: 13px;
  }
}
@media (max-width: 400px) {
  .container {
    padding: 0 4px;
  }
  .content-wrapper {
    gap: 7px;
  }
}

/* ===================== MICRO-INTERACTIONS & TRANSITIONS ===================== */
a, .cta-button, input, textarea, button, .card, .features-list li, .testimonial-card, .posts-grid article, .faq-list > div, .cookie-btn, .cookie-settings-btn {
  transition: box-shadow 0.17s, background 0.21s, color 0.17s, border-color 0.15s, transform 0.19s;
}

/* ===================== VISUAL GEOMETRIC STRUCTURE EFFECT ===================== */
/* Decorative geometric accent (pseudo) on .testimonial-card and .features-list li */
.features-list li::before, .testimonial-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: -13px;
  width: 19px;
  height: 19px;
  background: #37A276;
  border-radius: 2px 7px 13px 2px;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}
.features-list li {
  position: relative;
  overflow: visible;
}

.testimonial-card {
  position: relative;
  overflow: visible;
}

/* ===================== FEATURE ITEM CLASS (for future use) ===================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* =============== COLOR ACCESSIBILITY for Testimonials & Cards =============== */
.testimonial-card {
  color: #22307F;
  background: #fff;
}
.testimonial-card p,
.testimonial-card strong {
  color: #22307F;
}

/* =============== DISABLE GRID / COLUMNS (important for compliance) =============== */
[style*='display: grid'],
[style*='grid-'],
[style*='column-count'],
[style*='columns'],
[style*='column-width'],
[style*='column-gap'],
[style*='break-inside'] {
  display: flex !important;
  flex-direction: column !important;
}
