/* --- 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #232426;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus {
  outline: 2px solid #222;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
  background: none;
  border: none;
  color: inherit;
}
button {
  cursor: pointer;
}

/* --- CUSTOM PROPERTY FALLBACKS (for browsers) --- */
:root {
  --color-primary: #232426;
  --color-secondary: #F3F7F6;
  --color-accent: #FFD600;
  --brand-primary: #225A5E;
  --gray-100: #fff;
  --gray-200: #F3F7F6;
  --gray-400: #D9DEE0;
  --gray-700: #323337;
  --gray-900: #111213;
  --shadow-card: 0 2px 12px 0 rgba(50,51,55,0.10), 0 1.5px 6px 0 rgba(50,51,55,0.09);
  --shadow-strong: 0 6px 28px 0 rgba(35,36,38,0.12);
  --radius: 16px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* --- TYPOGRAPHY --- */
body {
  font-family: var(--font-body);
  background: var(--gray-100);
  color: var(--color-primary);
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--color-primary);
  font-weight: 700;
}
h1 {
  font-size: 2em;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5em;
  margin-bottom: 19px;
  line-height: 1.18;
}
h3 {
  font-size: 1.17em;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1em;
  margin-bottom: 8px !important;
}
p {
  font-size: 1em;
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* --- CONTAINER & LAYOUT PATTERNS --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--gray-100);
  margin-bottom: 20px;
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 270px;
  max-width: 100%;
}
.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: var(--gray-200);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0px 1.5px 9px 0 rgba(35,36,38,0.06);
  margin-bottom: 20px;
  border: 1px solid var(--gray-400);
  color: #232426;
  min-width: 240px;
  max-width: 500px;
}
.testimonial-card strong {
  font-size: 1em;
  color: var(--color-primary);
}
.testimonial-card span {
  color: var(--brand-primary);
  font-size: 1.13em;
  letter-spacing: 0.04em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature/Service/Grid Patterns */
.feature-grid, .service-cards, .values-grid, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div,
.service-cards > div,
.values-grid > div,
.faq-list > div {
  background: var(--gray-100);
  flex: 1 1 220px;
  padding: 24px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  margin-bottom: 0 !important;
  transition: box-shadow .18s, transform .18s;
}
.feature-grid > div:hover, .service-cards > div:hover, .values-grid > div:hover, .faq-list > div:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}

.daily-cleaning-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
}
.daily-cleaning-highlights li {
  background: #e9e9e9;
  border-radius: 30px;
  padding: 7px 20px;
  font-size: 0.98em;
  color: #232426;
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.quick-facts p {
  background: var(--gray-200);
  border-radius: 8px;
  padding: 6px 18px 6px 36px;
  color: #232426;
  font-size: 0.96em;
  position: relative;
}
.quick-facts img {
  width: 22px;
  height: 22px;
  position: absolute;
  left: 8px;
  top: 5px;
}

/* Table Styles */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--gray-100);
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
  border-radius: 12px;
  overflow: hidden;
  font-size: 1em;
}
.pricing-table th, .pricing-table td {
  padding: 18px 12px;
  border-bottom: 1px solid var(--gray-400);
  text-align: left;
}
.pricing-table th {
  background: var(--gray-200);
  font-family: var(--font-display);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1.5px solid var(--gray-400);
  box-shadow: 0 2px 8px 0 rgba(50,51,55,0.05);
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 20px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  font-family: var(--font-body);
}
header nav a {
  font-size: 1em;
  color: var(--gray-900);
  padding: 3px 2px;
  border-radius: 3px;
  font-weight: 500;
  transition: color 0.18s, background 0.18s;
}
header nav a:hover, header nav a.active {
  color: var(--brand-primary);
  background: var(--gray-400);
}
header .button.primary {
  margin-left: 26px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}

/* --- BUTTONS --- */
.button, .button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  padding: 12px 30px;
  font-size: 1.08em;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 32px;
  border: none;
  background: none;
  box-shadow: 0 1.5px 7px 0 rgba(34,36,38,0.03);
  transition: background .18s, color .18s, box-shadow .14s, transform .13s;
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.02em;
}
.button.primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 2px 9.5px 0 rgba(35,90,94,0.11);
}
.button.primary:hover, .button.primary:focus {
  background: #183F42;
  color: #FFD600;
  transform: translateY(-1.5px) scale(1.03);
}
.button:not(.primary) {
  background: #fff;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.button:not(.primary):hover, .button:not(.primary):focus {
  color: #fff;
  background: var(--brand-primary);
  border-color: #183F42;
  transform: translateY(-1px) scale(1.02);
}
.button:active {
  filter: brightness(0.96);
}

/* --- FOOTER --- */
footer {
  background: #F6F6F7;
  padding: 44px 0 12px 0;
  border-top: 1px solid var(--gray-400);
  color: #6C6C70;
  font-size: 0.98em;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 7px;
}
footer nav a {
  color: var(--brand-primary);
  transition: color 0.13s;
  font-size: 1em;
  font-weight: 500;
}
footer nav a:hover {
  color: #000;
  text-decoration: underline;
}
footer .footer-contact {
  margin-top: 11px;
  background: #fff;
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 1px 7px rgba(35,36,38,0.06);
  color: #232426;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer-contact p {
  margin-bottom: 8px;
  font-size: 0.98em;
  color: #232426;
}
footer .footer-contact img {
  width: 18px;
  height: 18px;
  vertical-align: -0.2em;
  margin-right: 7px;
}
footer .button {
  margin-top: 7px;
  align-self: flex-start;
}
footer small {
  display: block;
  margin-top: 11px;
  opacity: 0.85;
  font-size: 0.92em;
  color: #6C6C70;
}

/* --- FAQ PAGE LIST --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-list > div {
  background: var(--gray-200);
  border-radius: 12px;
  box-shadow: 0 1.5px 7px rgba(34,36,38,0.03);
  padding: 20px 20px 11px 20px;
  margin-bottom: 0 !important;
  min-width: 220px;
  max-width: 100%;
}
.faq-list h3 {
  margin-bottom: 7px;
  font-size: 1.08em;
}
.faq-list p {
  margin-bottom: 0;
}

.faq-list > div:hover {
  box-shadow: var(--shadow-strong);
  background: #ECECEE;
}

.faq-list + div input[type='text'] {
  width: 100%;
  padding: 12px 20px;
  border-radius: 7px;
  border: 1px solid var(--gray-400);
  font-size: 1em;
  margin-top: 18px;
  margin-bottom: 0;
  background: #fff;
  color: #232426;
  transition: border 0.16s;
}
.faq-list + div input[type='text']:focus {
  border: 1.5px solid var(--brand-primary);
}

/* --- FORMS (Contact Notes) --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}
.text-section span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.97em;
  color: #555;
  margin-top: 8px;
}
.text-section img {
  width: 20px;
  height: 20px;
}

/* --- LISTS (Contact & Advantages) --- */
ul, ol {
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1em;
  line-height: 1.6;
}
ul li img, ol li img {
  width: 21px;
  height: 21px;
}

/* ORDERED LIST FOR STEPS */
ol {
  counter-reset: customcounter;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
ol > li {
  position: relative;
  padding-left: 45px;
  font-size: 1em;
  min-height: 38px;
}
ol > li img {
  position: absolute;
  left: 0;
  top: 4px;
  width: 32px;
  height: 32px;
  background: #F6F6F7;
  border-radius: 50%;
  padding: 4px;
  border: 1px solid var(--gray-400);
}
ol > li strong {
  display: inline-block;
  margin-left: 3px;
}

/* --- RESPONSIVE FLEXBOX --- */
@media (max-width: 1200px) {
  .container {
    max-width: 940px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid, .service-cards, .values-grid, .content-grid {
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
    max-width: 100%;
  }
  .content-wrapper {
    gap: 20px;
  }
  .section {
    margin-bottom: 32px;
    padding: 22px 6px;
  }
  .feature-grid, .service-cards, .values-grid, .content-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  header .container {
    flex-wrap: wrap;
    gap: 18px;
    padding: 13px 8px;
  }
  header nav, footer nav {
    gap: 13px;
    font-size: 0.99em;
  }
  .card {
    padding: 20px 10px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.35em;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.13em;
    margin-bottom: 13px;
  }
  .button, .button.primary {
    min-width: 115px;
    padding: 10px 16px;
    font-size: 0.99em;
  }
  .footer-contact {
    padding: 10px 13px!important;
    font-size: 0.95em;
  }
}

/* --- MOBILE NAVIGATION MENU --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 210;
  border: none;
  background: var(--brand-primary);
  color: #fff;
  font-size: 2.1em;
  padding: 9.5px 23px;
  border-radius: 44px;
  box-shadow: 0 2px 8px rgba(34,90,94,0.12), 0 1px 4px rgba(35,36,38,0.09);
  transition: background .17s, box-shadow .14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #183F42;
  color: #FFD600;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
  header nav,
  header .button.primary {
    display: none;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,38,40,0.94);
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.34s cubic-bezier(.62,0,.64,1), opacity .27s, visibility 0s .32s;
  z-index: 2502;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  transition-delay: 0s, 0s, 0s;
}
.mobile-menu-close {
  position: relative;
  margin: 24px 0 22px 24px;
  align-self: flex-start;
  background: #fff;
  color: #232426;
  border-radius: 26px;
  border: none;
  font-size: 1.72em;
  width: 48px;
  height: 48px;
  box-shadow: 0 3px 16px 0 rgba(0,0,0,0.11);
  transition: background .13s;
  z-index: 3;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-primary);
  color: #FFD600;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: var(--font-display);
  padding: 18px 6vw;
  display: flex;
  width: 100%;
  font-size: 1.13em;
  color: #F6F6F7;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: none;
  transition: background 0.15s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFD600;
  background: rgba(50,51,55,0.14);
  text-decoration: underline;
}
.mobile-nav a:last-child {
  border-bottom: none;
}

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

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 16px 18px 16px;
  background: rgba(34,34,34,.98);
  color: #fff;
  font-size: 1em;
  box-shadow: 0 -3px 24px 0 rgba(23,24,26,.24);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  min-height: 64px;
  visibility: visible;
  opacity: 1;
  transition: opacity .24s, visibility .28s;
}
.cookie-banner.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s, visibility .24s;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  padding: 10px 22px;
  background: #fff;
  color: #232426;
  border: none;
  border-radius: 20px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  margin-left: 3px;
  min-width: 134px;
  margin-bottom: 5px;
}
.cookie-banner button.accept {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #183F42;
  color: #FFD600;
}
.cookie-banner button.reject {
  background: #fff;
  color: #232426;
  border: 2px solid var(--brand-primary);
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: var(--gray-400);
  color: #183F42;
}
.cookie-banner button.settings {
  background: var(--color-accent);
  color: #232426;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #FFEB82;
  color: #232426;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(12,12,12,0.6);
  z-index: 4500;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  transition: opacity .24s;
}
.cookie-modal-overlay.active {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 rgba(35,36,38,0.21);
  padding: 32px 24px 24px 24px;
  min-width: 300px;
  max-width: min(96vw, 470px);
  color: #232426;
  position: relative;
  animation: modalFadeIn .27s cubic-bezier(.6,0,.62,1);
  z-index: 5001;
}
@keyframes modalFadeIn {
  0% { opacity: 0; transform: translateY(70px) scale(.98); }
  100% { opacity: 1; transform: translateY(0px) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.26em;
  margin-bottom: 15px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid #E4E6EC;
  font-size: 1em;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal label {
  color: #232426;
  font-size: 1em;
  cursor: pointer;
  font-weight: 500;
}
.cookie-modal input[type='checkbox'] {
  width: 19px;
  height: 19px;
  accent-color: var(--brand-primary);
  margin-right: 9px;
}
.cookie-modal input[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  color: #323337;
  font-size: 1.56em;
  border: none;
  border-radius: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1.5px 7px 0 rgba(34,36,38,0.06);
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--brand-primary);
  color: #FFD600;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 22px 6vw 14px 6vw;
    min-width: 0;
  }
}

/* --- SCROLLBARS (Subtle for Monochrome Touch) --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 7px;
}
::-webkit-scrollbar-track {
  background: var(--gray-100);
}

/* --- MICRO-INTERACTIONS & HOVERS --- */
section, .card, .feature-grid > div, .testimonial-card, .faq-list > div {
  transition: box-shadow 0.18s;
}
section:hover, .feature-grid > div:hover, .service-cards > div:hover, .testimonial-card:hover, .faq-list > div:hover {
  box-shadow: 0 8px 30px -12px rgba(46,48,50,0.21);
  z-index: 1;
}
.button, .button.primary, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal .close-modal {
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform .13s;
}
.button:active, .cookie-banner button:active {
  transform: scale(.98);
}

/* --- VISUAL HIERARCHY : Monochrome Sophisticated --- */
section > .container {
  background: transparent;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--gray-900);
  text-shadow: 0 1px 2px #F8F8F8, 0 1px 8px #e2e4e7;
}
.section {
  border-radius: 19px;
  box-shadow: 0 6px 38px 0 rgba(35,37,38,0.08);
}

/* --- MONOCHROME DECORATIVE ELEMENTS (subtle borders) --- */
.card, .feature-grid > div, .service-cards > div, .faq-list > div, .testimonial-card {
  border: 1.2px solid #E2E5E7;
  background: #fff;
}

/* --- ACCENTS/ELEMENTS --- */
hr {
  border: none;
  height: 1.5px;
  background: var(--gray-400);
  margin: 26px 0;
}

/* ALL: Ensure no element overlaps, all margins at least 20px as requested */
.card, .testimonial-card, .section, .footer-contact, .feature-grid > div, .service-cards > div, .values-grid > div, .faq-list > div {
  margin-bottom: 20px;
}

/* Cards spacing for .card-container/.content-grid */
.card-container, .content-grid, .feature-grid, .service-cards, .faq-list, .values-grid {
  gap: 24px;
}

/* Hide visually but keep accessible (for future development, not required now) */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: 0;
}

/* --- COLOR PALETTE STRICTLY MONOCHROME-SOPHISTICATED WITH BRAND ACCENT --- */
body {
  background: #fff;
  color: #232426;
}
header, footer, .card, .testimonial-card, .section, .faq-list > div, .feature-grid > div, .service-cards > div, .footer-contact {
  background: #fff;
,}
@media (max-width: 400px) {
  .card, .testimonial-card, .feature-grid > div, .faq-list > div {
    padding: 11px 4px;
    font-size: 0.98em;
  }
}
