/* ===================================================================
   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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  background: #F6F1EA;
  color: #263642;
}
ul, ol {
  list-style-position: inside;
  margin-bottom: 20px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  color: inherit;
}

/* ===================================================================
   Fonts
   =================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;700&display=swap');

:root {
  --primary: #21425B;
  --secondary: #F2B134;
  --accent: #E5EAF0;
  --cream: #F6F1EA;
  --brown: #815C40;
  --brick: #C66339;
  --retro-green: #6C8A6B;
  --text-main: #263642;
  --retro-shadow: rgba(42, 38, 24, 0.07);
  --border-radius: 14px;
  --transition: all 0.25s cubic-bezier(.4,1,.55,.98);
  --shadow-main: 0 2px 8px var(--retro-shadow);
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: var(--cream);
  color: var(--text-main);
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  letter-spacing: 1px;
}
h1 {font-size: 2.25rem; line-height: 1.13; margin-bottom: 24px; font-weight: 900;}
h2 {font-size: 1.7rem; margin-bottom: 18px; font-weight: 700;}
h3 {font-size: 1.2rem; margin-bottom: 12px; font-weight: 700;}
p, ul, ol, table {font-size: 1rem; margin-bottom: 14px;}
strong {font-weight: 700;}

/* retro font touches */
h1, h2, h3 {
  text-shadow: 1px 1px 0 #ead197, 2px 2px 0 #fff4b0;
}

/* ===================================================================
   Layout Containers
   =================================================================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
header, footer {
  background: var(--primary);
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 16px var(--retro-shadow);
}
header .container, footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
footer {
  margin-top: 48px;
  font-size: 0.97rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  opacity: 0.87;
  border-bottom: 1.5px dashed var(--secondary);
  padding-bottom: 2px;
  margin-right: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-nav a:hover {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
  text-align: right;
}
.footer-contact img {
  width: 16px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ===================================================================
   Navigation & Header
   =================================================================== */
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-left: 36px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  position: relative;
  padding: 6px 4px;
  opacity: 0.94;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
  text-shadow: 1px 1px 0 #f2e3d9;
  opacity: 1;
}
.cta-header {
  color: var(--primary);
  background: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px var(--retro-shadow);
  margin-left: auto;
  transition: var(--transition);
  border: 2px solid var(--secondary);
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 0 #fff4b0;
  cursor: pointer;
}
.cta-header:hover, .cta-header:focus {
  background: #ffd280;
  color: var(--primary);
  border-color: #ffd280;
  box-shadow: 0 6px 22px var(--retro-shadow);
}

/* =============================
   Mobile Burger Menu
   ============================= */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  font-size: 2rem;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
  margin-left: 22px;
  z-index: 21;
  cursor: pointer;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ffd280;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: #fff;
  transform: translateX(-100%);
  transition: transform .37s cubic-bezier(.4,.07,.93,.8);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 34px 24px 16px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  margin-bottom: 26px;
  cursor: pointer;
  align-self: flex-end;
  transition: background 0.16s;
  z-index: 101;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffd280;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  margin-top: 24px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
  padding: 8px 2px;
  border-radius: var(--border-radius);
  width: 100%;
  font-weight: 700;
  transition: var(--transition);
  opacity: 0.94;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  opacity: 1;
}

@media (max-width: 1050px) {
  .main-nav { gap: 14px; }
  .footer-nav { gap: 12px; }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .main-nav, .cta-header {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    gap: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .container {
    padding: 0 8px;
  }
  .footer-contact {
    gap: 4px;
  }
}

/* ===================================================================
   Hero Section & Sections
   =================================================================== */
.hero {
  background: repeating-linear-gradient(135deg, #fdeec3, #f5d992 32px, #f4bc80 52px, #fdeec3 72px);
  border-bottom: 2px solid var(--secondary);
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 330px;
  justify-content: center;
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero .content-wrapper {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-main {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 38px;
  border-radius: 50px;
  color: var(--primary);
  background: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.22rem;
  text-shadow: 1px 1px 0 #fff4b0;
  border: 2.5px solid var(--secondary);
  box-shadow: 0 6px 22px var(--retro-shadow);
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: var(--transition);
}
.cta-main:hover, .cta-main:focus {
  background: #ffd280;
  color: var(--primary);
  border-color: #ffd280;
  box-shadow: 0 12px 32px var(--retro-shadow);
}

.section, section {
  background: #fff;
  box-shadow: 0 2px 12px var(--retro-shadow);
  border-radius: var(--border-radius);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
section:not(.hero):not(.thankyou) .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

/* ===================================================================
   Lists & Info Grids
   =================================================================== */
ul, ol {
  margin-top: 0;
  margin-bottom: 22px;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 12px;
  font-size: 1rem;
  padding-left: 32px;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
}
ul li img {
  width: 22px;
  vertical-align: middle;
  margin-right: 8px;
  margin-left: -34px;
  position: absolute;
  left: 0;
  top: 0;
}

ol {
  counter-reset: listnumber;
}
ol li {
  list-style: none;
}
ol li::before {
  counter-increment: listnumber;
  content: counter(listnumber) ". ";
  color: var(--secondary);
  font-weight: 700;
  margin-left: -28px;
  position: absolute;
  left: 0;
}

/* For FAQ and basic answers */
ul li span {
  color: var(--primary);
  background: var(--accent);
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 0.97em;
  margin-left: 6px;
}

/* Table styles (tarifs page) */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin-bottom: 18px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 1px 10px var(--retro-shadow);
  background: #fffefb;
}
thead th {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 800;
  padding: 12px 14px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 #fff4b0;
}
tbody td {
  padding: 10px 14px;
  border-bottom: 1px dashed #ead197;
  color: var(--primary);
}
tbody tr:last-child td {
  border-bottom: none;
}

/* ===================================================================
   Cards, Project List, Features, Testimonials
   =================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fffdf8;
  border-radius: var(--border-radius);
  padding: 36px 28px 28px 28px;
  box-shadow: 0 1.5px 14px var(--retro-shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  transition: box-shadow .22s;
}
.card:hover {
  box-shadow: 0 8px 30px #d6a96355;
  z-index: 2;
}

.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; }
  .content-grid { flex-direction: column; }
  .card-container { flex-direction: column; }
}

/* Testimonial Card */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe6;
  color: #31322c;
  border-left: 7px solid var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: 0 3px 16px #be900540;
  margin-bottom: 20px;
  font-size: 1.08rem;
  flex-direction: column;
  min-width: 210px;
  transition: box-shadow .22s;
}
.testimonial-card strong {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px #c9962e66;
}

/* Project List / Realisations */
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.project-summary {
  background: #fffefb;
  border: 2px dashed var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 16px #c9962e18;
  min-width: 240px;
  max-width: 340px;
  padding: 24px 18px 18px 22px;
  margin-bottom: 20px;
  color: var(--brown);
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.project-summary h3 {
  color: var(--brick);
  margin-bottom: 7px;
  text-shadow: none;
}
.project-summary p {
  font-size: 1rem;
  color: #815C40;
}
@media (max-width: 768px){
  .project-list {
    flex-direction: column;
    gap: 18px;
  }
  .project-summary {
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }
}

/* ===================================================================
   CTAs
   =================================================================== */
.cta-section {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 28px;
  border-radius: 30px;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid var(--secondary);
  box-shadow: 0 2px 10px var(--retro-shadow);
  letter-spacing: 0.8px;
  text-shadow: 1px 1px 0 #fff4b0;
  transition: var(--transition);
  cursor: pointer;
}
.cta-section:hover, .cta-section:focus {
  background: #ffd280;
  color: var(--primary);
  border-color: #ffd280;
  box-shadow: 0 5px 22px var(--retro-shadow);
}

/* ===================================================================
   Cookie Consent Banner
   =================================================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #442F09;
  color: #fff9ed;
  box-shadow: 0 -2px 40px #C9962E44;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  padding: 24px 30px 22px 30px;
  gap: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  animation: fadeInUp 0.7s cubic-bezier(.4,1,.38,.99);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
#cookie-banner.hide {
  display: none;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 0;
}
#cookie-banner button {
  cursor: pointer;
  border-radius: 22px;
  font-size: 1rem;
  padding: 7px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  transition: var(--transition);
}
#cookie-accept {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
  box-shadow: 0 3px 12px #311d0270;
}
#cookie-accept:hover, #cookie-accept:focus {
  background: #ffd280;
  border-color: #ffd280;
}
#cookie-reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--secondary);
}
#cookie-reject:hover, #cookie-reject:focus {
  background: var(--secondary);
  color: var(--primary);
}
#cookie-settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
#cookie-settings:hover {
  background: #fff;
  color: var(--primary);
  border-color: var(--secondary);
}

/* Cookie Settings Modal */
#cookie-modal {
  position: fixed;
  z-index: 10001;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 97vw;
  max-width: 410px;
  background: #fffdf6;
  color: var(--primary);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 40px #C9962E70;
  padding: 26px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s, transform .35s cubic-bezier(.43,1,.56,.93);
}
#cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
#cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-shadow: 1px 1px 0 #fff6b0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: var(--secondary);
  margin-right: 7px;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category .essential {
  font-style: italic;
  color: #aaa;
}
#cookie-modal .close-btn {
  align-self: flex-end;
  background: transparent;
  color: var(--primary);
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  margin-bottom: -10px;
  margin-top: -8px;
  border-radius: 50%;
  transition: background 0.15s;
  padding: 2px 10px 2px 10px;
}
#cookie-modal .close-btn:hover {
  background: #ffe9b6;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  width: 100%;
  gap: 14px;
  justify-content: flex-end;
}
#cookie-modal .cookie-modal-actions button {
  border-radius: 22px;
  border: none;
  padding: 7px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
#cookie-modal-save {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}
#cookie-modal-save:hover {
  background: #ffd280;
  border-color: #ffd280;
}
#cookie-modal-cancel {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--secondary);
}
#cookie-modal-cancel:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* ===================================================================
   Thank You & Simple Centered Section
   =================================================================== */
.thankyou {
  background: repeating-linear-gradient(135deg, #fdeec3, #f5dfa2 27px, #f2b13499 35px, #fdeec3 51px);
  min-height: 350px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 28px var(--retro-shadow);
  margin: 32px auto 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankyou h1 {
  color: var(--primary);
  text-shadow: 2px 2px 0 #fff9c6;
}

/* ===================================================================
   Feature Item (flex column)
   =================================================================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffdf8;
  border-radius: var(--border-radius);
  box-shadow: 0 1.5px 7px var(--retro-shadow);
  padding: 18px 16px;
  margin-bottom: 20px;
}

/* ===================================================================
   Misc: Horizontal Rules, Forms, Misc
   =================================================================== */
hr {
  border: none;
  border-top: 1.5px dashed #d7be97;
  margin: 32px 0 18px 0;
}
.text-section {
  margin-bottom: 26px;
}
.text-section img {
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
  opacity: 0.77;
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.14rem; }
  .container { padding: 0 6px; }
  .section, section { padding: 24px 6px; margin-bottom: 40px; }
  .project-list, .card-container, .content-grid { gap: 11px; }
}

/* Forms (if present) */
input, textarea, select {
  padding: 9px 12px;
  border-radius: 6px;
  border: 1.5px solid #efdcaf;
  margin-bottom: 14px;
  width: 100%;
  font-size: 1rem;
  background: #fffdef;
  color: var(--primary);
  transition: border .18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 600;
}

/* Animate link underline */
a:not(.cta-header):not(.cta-main):not(.cta-section) {
  position: relative;
  transition: color .18s;
}
a:not(.cta-header):not(.cta-main):not(.cta-section):after {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: -2px;
  height: 2px;
  background: var(--secondary);
  border-radius: 3px;
  transform: scaleX(0);
  transition: transform .23s;
}
a:not(.cta-header):not(.cta-main):not(.cta-section):hover:after {
  transform: scaleX(1);
}
a:not(.cta-header):not(.cta-main):not(.cta-section):hover {
  color: var(--brick);
  font-weight: 600;
}

/* ===================================================================
   Responsive for all layouts
   =================================================================== */
@media (max-width: 1100px) {
  .hero .container { min-height: 190px; padding-top: 18px; padding-bottom: 18px; }
}
@media (max-width: 900px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1em; }
}
@media (max-width: 700px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .hero .container {
    flex-direction: column;
    min-height: unset;
    padding: 20px 0 18px 0;
  }
  .section, section {
    padding: 18px 3px;
  }
}

/* ===================================================================
   Retro/Nostalgic Touches for Sections and Headings
   =================================================================== */
.section, section {
  border: 2.5px solid #f2b13433;
  border-radius: 22px;
  background: #fffefa;
  box-shadow: 0 2px 14px #be900554;
  margin-bottom: 60px;
}
header,
footer {
  border-bottom: 5px solid #d5cfb2;
  border-top: 3.5px dotted #f2b13455;
}
h1, h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  letter-spacing: 2.2px;
  padding-left: 7px;
}
h1::before, h2::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 9px;
  background: var(--secondary);
  opacity: 0.23;
  border-radius: 8px;
  margin-right: 7px;
  vertical-align: middle;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1.2px;
  color: var(--brown);
}

/* Decorative Patterns to reinforce retro style */
.section:after, section:after {
  content: '';
  display: block;
  position: absolute;
  right: 22px;
  bottom: 13px;
  width: 44px;
  height: 8px;
  background: repeating-linear-gradient(90deg, #F2B134, #ffe8b6 18px, #e5eaf0 22px, #F2B134 32px);
  border-radius: 8px;
  opacity: 0.18;
  pointer-events: none;
}

/* Useful utility classes & accessibility */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===================================================================
   SPACING/ALIGNMENT MANDATORY CLASSES
   =================================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===================================================================
   END OF CSS
   =================================================================== */