/* === 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,
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FAFAFC;
  color: #184C3A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
}
a {
  background-color: transparent;
  color: #184C3A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dotted #FFB500;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

/* === SOFT PASTEL COLOR SCHEME (BRAND COLORS + EXTENSIONS) === */
:root {
  --color-primary: #184C3A;
  --color-secondary: #F6F1E7;
  --color-accent: #FFB500;
  --color-white: #FFFFFF;
  --color-muted: #E5ECE8;
  --color-pastel-green: #C6F1D6;
  --color-pastel-yellow: #FFF3D6;
  --color-pastel-blue: #CBEDFD;
  --color-pastel-pink: #FFD6E6;
  --color-pastel-purple: #E0E3FF;
  --color-shadow: rgba(24, 76, 58, 0.08);
  --color-text-dark: #184C3A;
  --color-text-light: #546E60;
}

/* === TYPOGRAPHY === */
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-text-dark);
  font-size: 16px;
  background: var(--color-secondary);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--color-text-dark);
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  line-height: 1.25;
}
h4 {
  font-size: 1.125rem;
  font-weight: 600;
}
p, ul, ol {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
  color: var(--color-primary);
}

.tagline {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-primary);
  opacity: 0.84;
  margin-left: 12px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 36px;
  box-shadow: 0 6px 32px var(--color-shadow);
  transition: box-shadow 0.2s;
}

.text-section {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* === FLEX UTILS === */
.card-container,
.content-grid,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: space-between;
}
.content-grid {
  gap: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

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

.card {
  background: var(--color-pastel-yellow);
  margin-bottom: 20px;
  position: relative;
  border-radius: 24px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 28px 24px;
  min-width: 250px;
  flex: 1 1 290px;
  transition: transform 0.16s, box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 36px rgba(24,76,58,.16);
}

.tip-card {
  background: var(--color-pastel-green);
  border-radius: 22px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 20px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s;
}
.tip-card:hover {
  box-shadow: 0 8px 32px rgba(24,76,58,0.12);
}

.infobox {
  background: var(--color-pastel-blue);
  color: var(--color-primary);
  padding: 18px 22px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 1rem;
  box-shadow: 0 2px 8px var(--color-shadow);
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(105deg, var(--color-pastel-yellow) 70%, var(--color-pastel-blue) 130%);
  padding: 70px 20px 60px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 36px var(--color-shadow);
  min-height: 360px;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.hero h1,
.hero p {
  text-align: center;
  color: var(--color-primary);
}
.hero h1 {
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 38px;
}
.hero .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
@media (max-width: 768px) {
  .hero {
    padding: 40px 8px 32px 8px;
    min-height: 240px;
    border-radius: 0 0 22px 22px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 22px;
  }
}

/* === MAIN NAVIGATION === */
header {
  width: 100%;
  padding: 0;
  background: var(--color-white);
  box-shadow: 0 2px 12px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 22;
}
header .container {
  flex-direction: row;
  align-items: center;
  padding: 12px 20px 10px 20px;
  justify-content: space-between;
  gap: 20px;
}
.branding {
  display: flex;
  align-items: center;
  gap: 8px;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 14px;
  background: none;
  color: #184C3A;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
nav.main-nav a.cta {
  background: var(--color-accent);
  color: #184C3A;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(255,181,0,0.13);
  padding: 8px 22px;
  margin-left: 10px;
  transition: background 0.16s, color 0.14s, box-shadow 0.2s;
}
nav.main-nav a.cta:hover {
  background: #ffd143;
  color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(255,181,0,0.22);
}
nav.main-nav a:hover {
  background: #F3F6EF;
  color: #184C3A;
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 18px;
  padding: 10px 16px;
  font-size: 2rem;
  margin-left: 18px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, box-shadow 0.18s;
  box-shadow: 0 2px 16px rgba(255,181,0,0.12);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ffd143;
  color: #14412f;
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1002;
  background: var(--color-secondary);
  box-shadow: 0 6px 24px rgba(0,0,0,0.11);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.66,.09,.15,1);
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: var(--color-primary);
  font-size: 2.2rem;
  margin: 18px 0 8px 20px;
  align-self: flex-start;
  border-radius: 12px;
  padding: 6px 14px;
  transition: background 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #DCF2DD;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0 0 30px;
}
.mobile-nav a {
  font-size: 1.17rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 11px 0;
  border-radius: 12px;
  color: var(--color-primary);
  font-weight: 500;
  min-width: 220px;
  letter-spacing: 0.02em;
  transition: background 0.13s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:active {
  background: var(--color-pastel-green);
  color: #184C3A;
}

@media (max-width: 1024px) {
  nav.main-nav {
    gap: 11px;
  }
}
@media (max-width: 900px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* === FEATURE GRID & ICONS === */
.feature-grid,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.feature {
  background: var(--color-pastel-green);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(24,76,58,0.07);
  padding: 28px 20px 22px 20px;
  flex: 1 1 230px;
  min-width: 180px;
  max-width: 270px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.17s, transform 0.17s;
}
.feature img {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 20px rgba(100,140,120,0.08));
}
.feature h3 {
  font-size: 1.18rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.feature p {
  margin-bottom: 0;
}
.feature:hover {
  box-shadow: 0 8px 24px rgba(24,76,58,0.12);
  transform: translateY(-3px) scale(1.03);
}

/* === BUTTONS & CTAs === */
.cta,
button.cta,
input[type=submit].cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  background: var(--color-accent);
  color: #184C3A;
  padding: 13px 26px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  border-radius: 30px;
  border: none;
  box-shadow: 0 2px 12px rgba(255,181,0,0.10);
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.17s, transform 0.11s;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 5px;
}
.cta.large {
  min-width: 200px;
  font-size: 1.20rem;
  padding: 16px 32px;
  box-shadow: 0 4px 24px rgba(255,181,0,0.16);
}
.cta:hover,
button.cta:hover,
input[type=submit].cta:hover {
  background: #ffd143;
  color: var(--color-text-dark);
  transform: translateY(-1.5px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,181,0,0.23);
}

/* === CARDS === */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-benefits > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 10px 0 14px 0;
}
.service-benefits li {
  background: var(--color-pastel-blue);
  color: var(--color-primary);
  border-radius: 16px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.category-links a {
  background: var(--color-pastel-purple);
  color: var(--color-primary);
  border-radius: 12px;
  padding: 6px 14px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: background 0.16s, color 0.14s;
}
.category-links a:hover {
  background: var(--color-accent);
  color: #184C3A;
}

/* === TESTIMONIALS === */
.testimonials, .testimonial-card {
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-pastel-pink);
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(24,76,58,0.13);
  margin-bottom: 20px;
  color: #1a2322;
  min-width: 270px;
  max-width: 640px;
}
.testimonial-quote {
  font-size: 1.12rem;
  color: #184C3A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  line-height: 1.35;
}
.testimonial-rating {
  color: #FFB500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.testimonial-name {
  font-style: italic;
  font-size: 1rem;
  color: #535B58;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 2px;
}

/* === PROCESS STEPS === */
ol.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 12px 0;
  padding-left: 14px;
}
ol.steps-timeline li {
  background: var(--color-pastel-purple);
  border-radius: 16px;
  padding: 9px 18px 11px 15px;
  margin-bottom: 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  box-shadow: 0 1px 8px var(--color-shadow);
}

@media (min-width: 700px) {
  ol.steps-timeline {
    flex-direction: row;
    justify-content: space-between;
    gap: 28px;
    padding-left: 0;
  }
  ol.steps-timeline li {
    flex: 1;
    margin-bottom: 0;
    text-align: center;
  }
}

/* === FAQ ACCORDION/ANSWERS === */
.faq h3 {
  font-size: 1.11rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 3px;
}
.faq-answer {
  font-size: 1rem;
  background: var(--color-pastel-yellow);
  border-radius: 12px;
  padding: 12px 20px 14px 15px;
  margin-bottom: 10px;
  margin-top: 2px;
  color: var(--color-primary);
}

/* === BOTTOM CTA/CONFIRMATION === */
.cta-bottom {
  background: linear-gradient(100deg, var(--color-pastel-blue) 60%, var(--color-pastel-yellow) 115%);
  border-radius: 16px;
  box-shadow: 0 6px 28px var(--color-shadow);
  text-align: center;
  margin: 42px auto 22px auto;
  width: 100%;
  padding: 48px 10px 44px 10px;
}
.cta-bottom h2, .cta-bottom p {
  text-align: center;
  margin-bottom: 16px;
  color: var(--color-primary);
}
@media (max-width: 900px) {
  .cta-bottom {
    padding: 27px 5px 32px 5px;
  }
}

.confirmation {
  background: var(--color-pastel-green);
  border-radius: 20px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 30px 20px;
  margin-top: 18px;
  text-align: center;
}

/* === FOOTER === */
footer {
  background: var(--color-secondary);
  padding: 32px 0 16px 0;
  margin-top: 50px;
  border-top: 2px solid var(--color-muted);
}
footer .container {
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.footer-branding {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
}
.footer-nav a {
  color: var(--color-text-dark);
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  opacity: 0.9;
  transition: text-decoration 0.14s, color 0.14s;
}
.footer-nav a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.97rem;
  color: #5C665A;
  margin-top: 7px;
  text-align: center;
}
.footer-contact a {
  color: var(--color-primary);
  opacity: .95;
}

/* === RESPONSIVE DESIGN (MOBILE FIRST APPROACH) === */
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
    max-width: 100%;
  }
  .section,
  .content-wrapper {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
  .feature-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 14px !important;
  }
  .feature {
    min-width: 100px;
    max-width: 100%;
    padding: 16px 8px 13px 8px;
  }
  .testimonial-card,
  .card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 7px 15px 11px;
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .text-image-section, .content-grid, .card-container, .feature-grid {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .text-image-section {
    align-items: center;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
  .hero {
    padding: 22px 4px 15px 4px;
  }
  .cta-bottom {
    font-size: 1rem;
    margin: 17px 0 12px 0;
    padding: 20px 4px 22px 4px;
  }
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: var(--color-white);
  border-top: 2px solid var(--color-pastel-green);
  box-shadow: 0 -6px 24px rgba(24,76,58,0.13);
  padding: 24px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  animation: cookieslidein 0.6s cubic-bezier(.41,.85,.23,1.02);
  font-size: 1rem;
}
.cookie-banner .cookie-message {
  flex: 1 1 360px;
  color: var(--color-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-right: 16px;
  font-size: 1.05rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner .cookie-btn {
  background: var(--color-pastel-blue);
  border: none;
  color: var(--color-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 16px;
  padding: 8px 18px;
  margin-right: 2px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.12s;
  box-shadow: 0 2px 8px rgba(24,76,58,0.06);
}
.cookie-banner .cookie-btn.accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .cookie-btn.reject {
  background: var(--color-pastel-pink);
  color: #92294a;
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  filter: brightness(0.96);
}
@keyframes cookieslidein {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 2200;
  top:0; left:0; right:0; bottom:0;
  background: rgba(24,76,58,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--color-white);
  border-radius: 28px;
  padding: 38px 28px 26px 28px;
  max-width: 420px;
  min-width: 290px;
  box-shadow: 0 12px 52px rgba(24,76,58,0.23);
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: cookiemodalfadein 0.5s cubic-bezier(.44,.78,.07,1.01);
}
@keyframes cookiemodalfadein {
  from {transform: scale(0.88) translateY(40px); opacity: 0;}
  to   {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.27rem;
  margin-bottom: 4px;
  color: var(--color-primary);
}
.cookie-modal ul {
  list-style: none;
  margin-bottom: 0;
}
.cookie-category {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 7px 0;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text-dark);
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-accent);
  width: 18px; height: 18px;
}
.cookie-modal .category-desc {
  color: var(--color-text-light);
  font-size: 0.97rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 1px;
}
.cookie-modal .cookie-btn {
  padding: 9px 20px;
  font-size: 1rem;
}

/* === GENERIC FORM STYLES === */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 12px;
  border: 1px solid #CFDED6;
  padding: 10px 14px;
  background: #f8f9fa;
  color: #31574A;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 14px;
  transition: border 0.13s, background 0.11s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border: 1.5px solid var(--color-accent);
  background: #FFFFF7;
}

/* === MISC === */
::-webkit-input-placeholder { color: #727e78; opacity: .95; }
::-moz-placeholder          { color: #727e78; opacity: .95; }
:-ms-input-placeholder      { color: #727e78; opacity: .95; }
::placeholder              { color: #727e78; opacity: .95; }

@media (max-width: 600px) {
  .cookie-modal {
    max-width: 90vw;
    min-width: unset;
    padding: 18px 4vw 15px 4vw;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 48px;
    font-size: 0.98rem;
  }
}

/* === ACCESSIBILITY HIGHLIGHTS === */
a:focus-visible, .cta:focus-visible {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 2px;
  background: #FFFBE4;
}

/* === SPACING & CONSISTENCY === */
.section, .cta-bottom, .card, .testimonial-card, .tip-card, .infobox {
  margin-bottom: 24px;
}
.section:last-child, .cta-bottom:last-child {
  margin-bottom: 0;
}

/* === ANIMATIONS & MICRO-INTERACTIONS === */
.card, .testimonial-card, .feature {
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover, .testimonial-card:hover, .feature:hover {
  box-shadow: 0 8px 28px rgba(184, 140, 150, 0.09);
  transform: translateY(-3px) scale(1.01);
}

/* === END OF STYLES === */