* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: #222; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Top bar */
.top-bar { background: #0a1628; color: #fff; font-size: 13px; padding: 8px 0; }
.top-bar .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.top-bar a { color: #fff; }
.top-bar span { margin-right: 18px; }

/* Header */
header { background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 20px; }
.logo img { height: 58px; }
nav ul { display: flex; list-style: none; gap: 26px; align-items: center; }
nav a { font-weight: 600; font-size: 14px; letter-spacing: 0.4px; padding-bottom: 4px; position: relative; }
nav a.active, nav a:hover { color: #c41e3a; }
nav a.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: #c41e3a; }
.btn-donate { background: #0a1628; color: #fff !important; padding: 10px 20px; border-radius: 30px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.btn-donate:hover { background: #c41e3a; }

/* Hero */
.hero { display: grid; grid-template-columns: 1fr 1.15fr; min-height: 540px; background: #111; color: #fff; }
.hero-content { padding: 55px 45px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.35) 100%); }
.hero h1 { font-size: 42px; font-weight: 700; line-height: 1.12; margin-bottom: 10px; }
.stars { color: #c41e3a; letter-spacing: 5px; margin: 8px 0 16px; font-size: 14px; }
.hero p { font-size: 16px; max-width: 480px; opacity: .95; }
.hero-list { margin: 18px 0 0; padding-left: 0; }
.hero-list li { list-style: none; margin-bottom: 5px; padding-left: 16px; position: relative; }
.hero-list li::before { content: "•"; color: #c41e3a; position: absolute; left: 0; }
.hero-note { margin-top: 22px; display: flex; gap: 12px; font-size: 14px; }
.hero-note .icon { color: #c41e3a; font-size: 20px; flex-shrink: 0; }
.hero-img { background-size: cover; background-position: center; }

/* Benefits bar */
.benefits { background: #0a1628; color: #fff; padding: 38px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.benefit-item .icon { width: 48px; height: 48px; border: 2px solid #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 20px; }
.benefit-item h4 { font-size: 13px; letter-spacing: .5px; margin-bottom: 6px; }
.benefit-item p { font-size: 13px; opacity: .88; }

/* Locations */
.locations { padding: 55px 0 40px; background: #faf9f7; }
.locations h2 { text-align: center; font-size: 26px; margin-bottom: 6px; }
.locations .subtitle { text-align: center; color: #666; margin-bottom: 35px; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr 300px; gap: 25px; }
.loc-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,.07); }
.loc-card img { height: 170px; width: 100%; object-fit: cover; }
.loc-card-body { padding: 18px; }
.loc-card h3 { font-size: 15px; margin-bottom: 6px; }
.loc-card p { font-size: 13px; color: #555; margin-bottom: 14px; }
.btn-view { display: inline-block; background: #0a1628; color: #fff; padding: 8px 16px; border-radius: 4px; font-size: 13px; font-weight: 600; }
.btn-view:hover { background: #c41e3a; }
.stay-connected { background: #6b0f1a; color: #fff; padding: 28px 22px; border-radius: 8px; text-align: center; }
.stay-connected h3 { font-size: 22px; margin-bottom: 6px; }
.stay-connected p { font-size: 14px; margin-bottom: 18px; opacity: .9; }
.newsletter { display: flex; }
.newsletter input { flex: 1; padding: 11px; border: none; border-radius: 4px 0 0 4px; font-size: 14px; }
.newsletter button { background: #0a1628; color: #fff; border: none; padding: 0 18px; border-radius: 0 4px 4px 0; font-weight: 600; cursor: pointer; }

/* Footer */
footer { background: #6b0f1a; color: #fff; text-align: center; padding: 16px 0; font-size: 13px; letter-spacing: 2px; }

/* Responsive */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 40px 25px; }
  .hero h1 { font-size: 32px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  nav ul { gap: 14px; font-size: 13px; flex-wrap: wrap; justify-content: center; }
  .header-inner { flex-direction: column; gap: 12px; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .top-bar { text-align: center; font-size: 12px; }
}