*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a3a6b;
  --navy-dark: #0f2347;
  --navy-mid: #254e8c;
  --orange: #e87722;
  --orange-dark: #c96310;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --gray-light: #eef0f4;
  --gray-mid: #9aa3b0;
  --gray-text: #4a5568;
  --dark-text: #1a202c;
  --border: #d1d9e6;
  --shadow-sm: 0 2px 8px rgba(26,58,107,0.08);
  --shadow-md: 0 6px 24px rgba(26,58,107,0.12);
  --shadow-lg: 0 12px 40px rgba(26,58,107,0.16);
  --radius: 8px;
  --radius-lg: 14px;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: 'Segoe UI', Arial, Helvetica, sans-serif;
  --max-w: 1160px;
}

body {
  font-family: var(--font-sans);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--orange); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
}

.logo-mark span {
  display: block;
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-mark span.big { font-size: 1.1rem; color: var(--orange); }

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.logo-text em {
  font-size: 0.72rem;
  color: var(--gray-mid);
  font-style: normal;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--orange);
  background: rgba(232,119,34,0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-donate {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border: 2px solid var(--orange);
}

.btn-donate:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232,119,34,0.35);
}

.hero {
  background: var(--navy);
  padding: 60px 20px;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 6px;
}

.hero-divider {
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 18px 0 22px;
  border-radius: 2px;
}

.hero-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-block;
  padding: 13px 26px;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: all 0.25s;
  text-align: center;
}

.btn-hero:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-hero.filled {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.btn-hero.filled:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-navy .section-title { color: var(--white); }

.section-desc {
  font-size: 1rem;
  color: var(--gray-text);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-navy .section-desc { color: rgba(255,255,255,0.8); }

.title-underline {
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: 14px auto 0;
  border-radius: 2px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.col-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.col-img:hover img { transform: scale(1.04); }

.col-text .section-label { text-align: left; }

.col-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
}

.col-text .divider-left {
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 18px;
}

.col-text p {
  color: var(--gray-text);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.col-text p:last-of-type { margin-bottom: 24px; }

.btn-outline-navy {
  display: inline-block;
  padding: 11px 26px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: all 0.25s;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.info-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.info-card-body {
  padding: 22px 20px 24px;
}

.info-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.info-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}

.info-card-body p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.card-link::after { content: '→'; }
.card-link:hover { color: var(--orange); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--orange);
  transition: all 0.3s;
}

.step-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  font-family: var(--font-serif);
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
}

.banner-strip {
  background: var(--navy-dark);
  padding: 50px 20px;
  text-align: center;
}

.banner-strip h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}

.banner-strip p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.related-section {
  padding: 60px 0;
  background: var(--gray-light);
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.related-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.related-links {
  background: var(--white);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  align-content: start;
}

.related-links h3 {
  grid-column: 1 / -1;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}

.related-link-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
  transition: color 0.2s;
  line-height: 1.4;
}

.related-link-item::before {
  content: '›';
  color: var(--orange);
  font-size: 1.2rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.related-link-item:hover { color: var(--orange); }

.newsletter-bar {
  background: var(--navy);
  padding: 48px 20px;
}

.newsletter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.newsletter-text h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 10px;
}

.newsletter-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: var(--orange); }

.newsletter-form button {
  padding: 13px 28px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
}

.newsletter-form button:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 20px 28px;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-mark { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 20px;
  opacity: 0.7;
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--orange);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--orange); }

.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 6px;
  opacity: 0.7;
}

.footer-contact strong { color: var(--white); opacity: 1; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  margin-left: 16px;
  font-size: 0.8rem;
}

.footer-bottom a:hover { color: var(--orange); opacity: 1; }

.page-hero {
  background: var(--navy);
  padding: 56px 20px;
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.page-hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}

.page-hero-text .hero-divider { margin: 16px 0 18px; }

.page-hero-text p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.8;
}

.page-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}

.page-hero-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.breadcrumb {
  background: var(--gray-light);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
}

.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--gray-mid);
}

.breadcrumb-inner a { color: var(--navy); }
.breadcrumb-inner span { margin: 0 8px; }

.page-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.page-main h2 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--navy);
  margin: 40px 0 12px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
}

.page-main h2:first-child { margin-top: 0; }

.page-main h3 {
  font-size: 1.1rem;
  color: var(--navy-mid);
  margin: 22px 0 8px;
  font-weight: 700;
}

.page-main p {
  color: var(--gray-text);
  font-size: 0.97rem;
  line-height: 1.88;
  margin-bottom: 16px;
}

.page-main ul, .page-main ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.page-main li {
  color: var(--gray-text);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.page-img-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 32px 0;
  box-shadow: var(--shadow-md);
}

.page-img-block img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.page-img-caption {
  background: var(--off-white);
  padding: 10px 18px;
  font-size: 0.82rem;
  color: var(--gray-mid);
  font-style: italic;
  border-top: 1px solid var(--border);
}

.callout-box {
  background: linear-gradient(135deg, #e8f0fb, #d4e3f7);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.callout-box p {
  color: var(--navy-dark);
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
}

.sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-widget {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.sidebar-widget h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}

.sidebar-widget ul { list-style: none; }

.sidebar-widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-widget ul li:last-child { border-bottom: none; }

.sidebar-widget ul li a {
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.sidebar-widget ul li a::before {
  content: '›';
  color: var(--orange);
  font-size: 1rem;
}

.sidebar-widget ul li a:hover { color: var(--orange); }

.sidebar-newsletter {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin-bottom: 24px;
}

.sidebar-newsletter h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}

.sidebar-newsletter p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.6;
}

.sidebar-newsletter input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.85rem;
  margin-bottom: 8px;
  outline: none;
}

.sidebar-newsletter input::placeholder { color: rgba(255,255,255,0.45); }

.sidebar-newsletter button {
  width: 100%;
  padding: 10px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.sidebar-newsletter button:hover { background: var(--orange-dark); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.stat-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
}

.stat-box .num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box .lbl {
  font-size: 0.82rem;
  opacity: 0.8;
  line-height: 1.4;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.team-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.team-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: top;
}

.team-card-info {
  padding: 16px;
}

.team-card-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.team-card-info p {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.highlight-navy {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin: 24px 0;
}

.highlight-navy p {
  color: rgba(255,255,255,0.9);
  font-size: 0.97rem;
  margin: 0;
  line-height: 1.75;
  font-style: italic;
}

.highlight-navy p::before { content: '"'; font-size: 1.4rem; color: var(--orange); }
.highlight-navy p::after { content: '"'; font-size: 1.4rem; color: var(--orange); }

@media (max-width: 960px) {
  .hero-inner, .page-hero-inner, .newsletter-inner, .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-body { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .header-nav { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-btns, .banner-btns { flex-direction: column; }
  .hero-img img, .col-img img { height: 260px; }
}
