/* ============================================================
   MY RECOMMENDATION — Shared Stylesheet
   Used by: index.html, our-services.html, and all other pages
   ============================================================ */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Brand Tokens ────────────────────────────────────────── */
:root {
  --blue:        #5b73e8;
  --blue-dark:   #4a60d5;
  --blue-light:  #eef0fd;
  --green:       #22c77a;
  --navy:        #0f1b3d;
  --body-text:   #444c6a;
  --light-bg:    #f4f5fb;
  --white:       #ffffff;
  --border:      #e2e5f0;
  --font:        'Nunito', sans-serif;
  --max-w:       1200px;
  --pad:         clamp(1rem, 5vw, 2.5rem);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-pill: 999px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--body-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(91,115,232,0.3);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(91,115,232,0.4); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* ── HEADER / NAV ────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-logo-img { height: 44px; width: auto; }
.nav-brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  font-style: italic;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links > li > a {
  font-size: 15px;
  font-weight: 600;
  color: var(--body-text);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--green); }
/* Dropdown */
.nav-links > li { position: relative; }
.nav-links > li > ul {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  min-width: 230px;
  list-style: none;
  padding: 0.5rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: opacity 0.15s, visibility 0.15s;
  transition-delay: 0s;
}
.nav-links > li:hover > ul {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
.nav-links > li > ul > li > a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--body-text);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-links > li > ul > li > a:hover { background: var(--blue-light); color: var(--blue); }
/* Social icons */
.nav-socials { display: flex; align-items: center; gap: 14px; }
.nav-socials a { color: var(--body-text); font-size: 20px; transition: color 0.2s; display: flex; }
.nav-socials a:hover { color: var(--green); }
.nav-socials svg { width: 22px; height: 22px; fill: currentColor; }
/* Nav CTA button */
.nav-dl-btn { font-size: 14px !important; padding: 10px 22px !important; }
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem var(--pad) 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.7rem 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--body-text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu a.sub { padding-left: 1.25rem; font-size: 14px; font-weight: 500; }
.mobile-menu .mob-cta { margin-top: 1rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #1E2A4A;
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-logo {
  height: 44px;
  width: auto;
  align-self: flex-start;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-socials a:hover {
  color: var(--green);
  transform: translateY(-2px);
}
.footer-socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.footer-col-links h3,
.footer-col-contact h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col-links ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer-col-links ul a:hover {
  color: var(--green);
}
.footer-col-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-email-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer-email-link:hover {
  color: var(--green);
}
.footer-email-icon {
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-email-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}
.footer-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-dl-btn {
  font-size: 13px !important;
  padding: 10px 20px !important;
}
.footer-terms-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer-terms-link:hover {
  color: var(--green);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Mailing List (shared across pages) ──────────────────── */
.mailing-section {
  background: var(--light-bg);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
}
.mailing-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.75rem;
}
.mailing-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 780px;
  margin: 0 auto;
}
.mailing-form input {
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.mailing-form input:focus { border-color: var(--blue); }
.mailing-form input::placeholder { color: #aab0c8; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-right { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
}
@media (max-width: 540px) {
  .mailing-form { flex-direction: column; }
  .mailing-form input { width: 100%; }
  .mailing-form .btn { width: 100%; }
}

/* ── Service page layout ─────────────────────────────────── */
.svc-hero {
  background: linear-gradient(160deg, #eef0fd 0%, #f4f5fb 60%, #ffffff 100%);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.svc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.svc-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.svc-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.svc-hero p {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
}
.svc-hero-img img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 4px solid var(--green);
}

.svc-why {
  background: var(--white);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.svc-why h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.svc-why-sub { font-size: 15px; color: var(--body-text); margin-bottom: 2.5rem; }
.svc-why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc-why-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(91,115,232,0.12); }
.svc-why-card-icon { width: 52px; height: 52px; margin-bottom: 1.25rem; }
.svc-why-card-icon img { width: 100%; height: 100%; object-fit: contain; }
.svc-why-card h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.svc-why-card p { font-size: 14px; color: var(--body-text); line-height: 1.6; }

.svc-tiers {
  background: var(--blue);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.svc-tiers h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.svc-tiers-sub { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; }
.svc-tier-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.svc-tier-card { background: var(--white); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; }
.svc-tier-badge {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900;
  margin: 0 auto 1rem;
}
.badge-bronze { background: #f5e6d3; color: #b5651d; }
.badge-silver { background: #f0f0f0; color: #7a7a7a; }
.badge-gold   { background: #fff8e1; color: #c9a227; }
.svc-tier-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.svc-tier-card p { font-size: 14px; color: var(--body-text); line-height: 1.6; }

.svc-cta { padding: 0; }
.svc-cta-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; }
.svc-cta-left {
  background: linear-gradient(160deg, #eef0fd 0%, #f4f5fb 60%, #ffffff 100%);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
}
.svc-cta-left h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: #111111; line-height: 1.2; }
.svc-cta-left p { font-size: 15px; color: #444444; line-height: 1.65; max-width: 380px; }
.svc-cta-right { overflow: hidden; background: #e8e8e8; }
.svc-cta-right img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .svc-hero-inner { grid-template-columns: 1fr; }
  .svc-why-cards { grid-template-columns: 1fr; }
  .svc-tier-cards { grid-template-columns: 1fr; }
  .svc-cta-inner { grid-template-columns: 1fr; }
  .svc-cta-right { min-height: 240px; }
}

/* ============================================================
   REDESIGN ADDITIONS
   ============================================================ */

/* ── Logo whitespace & Header Alignment ───────────────────── */
.nav-left a {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 38px !important;
  margin-top: 4px;
  margin-bottom: 4px;
  vertical-align: middle;
}

/* ── Trust Statistics Section ─────────────────────────────── */
.stats-section {
  background: var(--light-bg);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stats-number {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.stats-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

/* ── How REC Works Interactive Enhancements ──────────────── */
.how-card {
  box-shadow: 0 4px 12px rgba(15,27,61,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.how-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 28px rgba(15,27,61,0.1);
}
.how-cta {
  margin-top: 3rem;
}
.how-cta .btn {
  padding: 16px 36px;
  font-size: 16px;
}

/* ── Benefits Section ─────────────────────────────────────── */
.benefits-section {
  background: var(--white);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.benefits-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.5rem;
}
.benefits-sub {
  text-align: center;
  font-size: 16px;
  color: var(--body-text);
  margin-bottom: 3.5rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.benefits-column h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--blue-light);
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.benefit-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(91,115,232,0.08);
}
.benefit-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}
.benefit-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.benefit-text p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.5;
}

/* ── Redesigned Popular Categories Section ────────────────── */
.popular-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pop-cat-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.pop-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(91,115,232,0.12);
  border-color: var(--blue);
  background: var(--white);
}
.pop-cat-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  transition: background 0.3s, color 0.3s;
}
.pop-cat-card:hover .pop-cat-icon {
  background: var(--blue);
  color: var(--white);
}
.pop-cat-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.pop-cat-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}
.pop-cat-card p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.5;
}

/* ── Testimonials Section ─────────────────────────────────── */
.testimonials-section {
  background: var(--light-bg);
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.5rem;
}
.testimonials-sub {
  text-align: center;
  font-size: 16px;
  color: var(--body-text);
  margin-bottom: 3.5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(15,27,61,0.02);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,27,61,0.08);
}
.test-medal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.test-rating {
  color: #ffb800;
  font-size: 16px;
  margin-bottom: 1rem;
  display: flex;
  gap: 2px;
}
.test-text {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.test-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.test-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.test-info p {
  font-size: 12px;
  color: var(--body-text);
}

/* ── FAQ Section (Accordion) ──────────────────────────────── */
.faq-section {
  background: var(--white);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(2rem, 3vw, 2.5rem) 0;
}
.faq-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.5rem;
}
.faq-sub {
  text-align: center;
  font-size: 16px;
  color: var(--body-text);
  margin-bottom: 3.5rem;
}
.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--light-bg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}
.faq-question h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.faq-icon {
  font-size: 12px;
  color: var(--body-text);
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
}
.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
}

/* Open states */
.faq-item.active {
  border-color: var(--blue);
  background: var(--white);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ── Service Detail Medals Image Replacement ──────────────── */
.svc-tier-medal {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  display: block;
}

/* ── Expanded Spacing for Download / Support ─────────────── */
.download-section {
  padding: clamp(4rem, 8vw, 6rem) 0 !important;
}
.support-section {
  padding: clamp(2rem, 3vw, 2.5rem) 0 clamp(4rem, 8vw, 6rem) 0 !important;
}

/* Responsive Redesign Adjustments */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .popular-categories-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .popular-categories-grid {
    grid-template-columns: 1fr;
  }
}
