/* ===== MODERN CSS RESET & VARIABLES ===== */
:root {
  --primary: #056839;
  --primary-light: #0a7a47;
  --primary-dark: #034a28;
  --primary-gradient: linear-gradient(135deg, #056839 0%, #0a7a47 100%);
  --text: #1a2c24;
  --text-light: #5a7167;
  --text-lighter: #8a9c94;
  --background: #f8fbf9;
  --surface: #ffffff;
  --border: #e1e9e5;
  --shadow: 0 4px 24px rgba(5, 104, 57, 0.08);
  --shadow-lg: 0 20px 60px rgba(5, 104, 57, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* put this near the top, after :root block */
:root { --header-h: 112px; }   /* adjust if needed */

/* REPLACE any existing body padding rule with this: */
body { 
  padding-top: var(--header-h);
}

.has-fixed-header { padding-top: var(--header-h); }

@media (max-width: 1024px) {
  :root { --header-h: 96px; }
}
@media (max-width: 768px) {
  :root { --header-h: 80px; }
}

/* keep header fixed */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  overflow-x: hidden;
  padding-top: 120px; /* Header overlap fix */
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 500;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--sm {
  padding: 3rem 0;
}

.section--lg {
  padding: 8rem 0;
}

.text-center {
  text-align: center;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* ===== LOGO STYLING ===== */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  min-height: 45px;
}

.nav__logo-image {
  height: 90px;
  width: auto;
  display: block;
}

.nav__logo img {
  display: block !important;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__logo-text strong {
  color: var(--primary);
  font-size: 1.25rem;
}

.nav__logo-text span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.nav__menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  gap: 0.5rem;
}

.nav__menu.active {
  display: flex;
}

.nav__menu a {
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__menu a:hover,
.nav__menu a.active {
  background: var(--primary);
  color: white;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  width: 20px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  font-family: inherit;
}

.btn--primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--primary-dark);
}

.btn--secondary {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--primary);
}

.btn--secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.nav__actions .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 14rem 0 8rem;
  background: url('/assets/images/hero.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero__title {
  margin-bottom: 1.5rem;
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
}

.hero__description {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn--primary {
  background: white;
  color: var(--primary);
  border: 2px solid white;
}

.hero .btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.hero .btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero .btn--secondary:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* ===== SECTIONS ===== */
.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section__kicker {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* ===== SERVICES STYLES ===== */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 4rem 0;
}

.service-detailed-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}

.service-detailed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
}

.service-detailed-content {
  padding: 1rem;
}

.service-detailed-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-feature-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-icon-large {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: white;
}

.service-icon-large svg {
  width: 40px;
  height: 40px;
}

.service-features {
  margin: 2rem 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-guarantee {
  background: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  font-weight: 500;
  margin: 2rem 0 0 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--text);
}

.service-card p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.service-card__icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
  align-items: start;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-story h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.about-story p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.certifications h3 {
  margin-bottom: 2rem;
  color: var(--text);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.cert-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.cert-badge svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.sidebar-card h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.sidebar-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.areas-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--background);
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-style: italic;
  color: var(--text-light);
}

.areas-note svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.emergency-sidebar {
  background: var(--primary-gradient);
  color: white;
}

.emergency-sidebar h3 {
  color: white;
}

.emergency-sidebar p {
  color: rgba(255, 255, 255, 0.9);
}

.emergency-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.emergency-sidebar .btn--primary {
  background: white;
  color: var(--primary);
}

.emergency-sidebar .btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.emergency-sidebar .btn--secondary:hover {
  background: white;
  color: var(--primary);
}

/* ===== EMERGENCY CTA ===== */
.emergency-cta {
  background: var(--primary-gradient);
  color: white;
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 4rem;
}

.emergency-cta__content h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.emergency-cta__content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.emergency-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.emergency-cta .btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.emergency-cta .btn--secondary:hover {
  background: white;
  color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
  background: #2d3748;
  color: white;
  padding: 3rem 0 2rem;
}

.footer__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer__logo-image {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer__links h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer__links ul {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer__links a:hover {
  color: white;
}

.footer__contact h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer__contact p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 768px) {
  .nav__menu {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    padding: 0;
    gap: 2rem;
  }

  .nav__menu a {
    padding: 0.5rem 1rem;
    background: none;
    color: var(--text);
  }

  .nav__menu a:hover,
  .nav__menu a.active {
    background: none;
    color: var(--primary);
  }

  .nav__toggle {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 968px) {
  .service-detailed-grid {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
  
  .service-detailed-image {
    order: -1;
  }
  
  .service-feature-img {
    height: 300px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 12rem 0 6rem;
    min-height: 70vh;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero__description {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .emergency-cta__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .emergency-cta__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .cert-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }

  .nav__logo-image {
    height: 35px;
  }
  
  .nav__logo-text span {
    display: none;
  }
  
  .nav__actions .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* Tailwind compatibility fixes for form elements (when using CDN) */
input, select, textarea {
  box-sizing: border-box;
  font: inherit;
  background: #fff;
  border: 1px solid #cbd5e1;        /* slate-300 */
  border-radius: 0.75rem;            /* ~ rounded-xl */
  padding: 0.75rem 1rem;             /* px-4 py-3 */
  width: 100%;
  color: #0f172a;                    /* slate-900 */
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #10b981;             /* emerald-500 */
  box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
}

.card, .panel {
  border: 1px solid #e2e8f0;         /* slate-200 */
  border-radius: 1rem;               /* rounded-2xl-ish */
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
/* =======================
   HEADER + MOBILE NAV FINAL VERSION
   ======================= */

/* Base header styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo */
.nav__logo-image {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
}

/* Desktop menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav__menu a:hover,
.nav__menu a.active {
  color: var(--primary);
}

/* Actions (buttons / CTA) */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger (hidden by default) */
.nav__toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* =======================
   MOBILE NAVIGATION
   ======================= */
@media (max-width: 768px) {

  /* Header tweaks for small screens */
  .header {
    padding: 1rem 0;
  }

  .nav__logo-image {
    height: 60px !important;
    width: auto !important;
  }

  /* Hide desktop CTA button */
  .nav__actions .btn--primary {
    display: none;
  }

  /* Show hamburger */
  .nav__toggle {
    display: flex !important;
    position: relative;
    z-index: 10000;
  }

  /* Full-screen mobile menu */
  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
  }

  /* Slide in when active */
  .nav__menu.active {
    transform: translateX(0);
  }

  /* Mobile link styles */
  .nav__menu a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
  }

  /* Mobile call-to-action button */
  .nav__menu .btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .nav__menu .btn:hover {
    background: var(--primary-dark);
  }

  /* Ensure spacing inside smaller containers */
  .container {
    padding: 0 1rem;
  }
}
/* === MOBILE MENU CALL BUTTON FIX === */
@media (max-width: 768px) {
  /* Hide the desktop call button but show it inside the slide-in menu */
  .nav__actions .btn--primary {
    display: none !important;
  }

  .nav__menu .btn--primary {
    display: inline-flex !important;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .nav__menu .btn--primary:hover {
    background: var(--primary-dark);
  }
}
/* === Mobile header: bigger logo, tighter padding === */
@media (max-width: 768px) {
  /* tighten the header’s vertical padding */
  .nav { padding: .35rem 0; }

  /* make the logo noticeably larger on phones */
  .nav__logo-image {
    height: 72px !important;   /* was ~35–60px in older rules */
    width: auto !important;
  }

  /* keep the call button/menu aligned nicely */
  .nav__actions .btn { padding: .6rem 1rem; font-size: .95rem; }
}

/* If your first section ever tucks under the taller header on mobile, nudge it down */
@media (max-width: 768px) {
  .hero-green,
  .home-hero,
  .section:first-of-type {
    margin-top: 88px;   /* matches the larger logo/header height */
  }
}
