:root {
  /* Warm, approachable palette - community first */
  --primary: #1E3A5F;      /* Deep navy - trustworthy */
  --secondary: #E8F0F8;     /* Light blue-gray - friendly */
  --accent: #2E8B57;        /* Sea green - helping, growth */
  --accent-dark: #236B43;     /* Darker green */
  --accent-light: #90EE90;     /* Light green */
  --text: #2D3748;            /* Dark gray - readable */
  --text-light: #4A5568;      /* Medium gray */
  --text-muted: #718096;      /* Muted gray */
  --danger: #E53E3E;          /* Red - only for actual emergencies */
  --success: #38A169;         /* Green */
  --border: #CBD5E0;          /* Light border */
  --glass: rgba(255, 255, 255, 0.95);
  
  /* Old accent saved for emergency only */
  --old-accent: #C9A227;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--secondary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Subtle texture */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(46, 139, 87, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 139, 87, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.home {
  position: relative;
  z-index: 1;
}

.display-font {
  font-family: 'Playfair Display', serif;
}

/* Emergency Banner */
.emergency-banner {
  background: #F59E0B;
  color: #78350F;
  padding: 1rem 5%;
  text-align: center;
  font-weight: 600;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  font-weight: 700;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary);
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.emergency-btn {
  background: var(--accent);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.emergency-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 4rem;
  position: relative;
  background: linear-gradient(135deg, white 0%, var(--secondary) 50%, white 100%);
}

.hero-background {
  display: none;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.badge-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--primary);
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

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

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Quick Contact Cards */
.quick-contact {
  padding: 4rem 5%;
  background: white;
  position: relative;
  z-index: 10;
}

.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(46, 139, 87, 0.15);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(46, 139, 87, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.contact-card.emergency .contact-card-icon {
  background: rgba(229, 62, 62, 0.1);
  color: var(--danger);
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-card .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.5rem 0;
}

.contact-card.emergency .number {
  color: var(--danger);
}

.contact-card a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

/* Sections */
section {
  padding: 5rem 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.accent-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 1rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(46, 139, 87, 0.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(46, 139, 87, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Department Leadership */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.leader-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.leader-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.leader-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.leader-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.leader-card .title {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.leader-card .badge {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Info Section */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-box {
  padding: 2rem;
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.info-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-box h3 span {
  color: var(--accent);
}

.info-list {
  list-style: none;
}

.info-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list .label {
  color: var(--text-muted);
}

.info-list .value {
  font-weight: 500;
}

/* Location Map */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.location-info {
  padding: 5rem;
  background: var(--secondary);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.location-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-item span:first-child {
  font-size: 1.25rem;
}

.location-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.location-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.location-map {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--border);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
}

/* Page Components */
.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  width: 100%;
}

/* Generic Page Layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-hero {
  padding: 8rem 5% 4rem;
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.page-content {
  padding: 4rem 5%;
  flex: 1;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.content-block {
  padding: 2rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.content-block.full-width {
  grid-column: 1 / -1;
}

.content-block h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.content-block p {
  color: var(--text-muted);
}

.content-block ul {
  list-style: none;
  color: var(--text-muted);
}

.content-block li {
  padding: 0.5rem 0;
}

.content-block li strong {
  color: var(--text);
}

/* CTA Section */
.cta-section {
  padding: 4rem 5%;
  background: var(--secondary);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-danger {
  background: var(--danger);
  color: white;
}

.btn-danger:hover {
  background: #B91C1C;
  transform: translateY(-2px);
}

/* Officers Page */
.officers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.officer-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.officer-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.officer-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.officer-title {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.officer-badge {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.officer-email {
  display: block;
  margin-top: 0.75rem;
  color: var(--accent);
  font-size: 0.85rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.team-card {
  padding: 1.5rem;
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-title {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Emergency Page */
.emergency-page .emergency-banner {
  font-size: 1.25rem;
  font-weight: 700;
}

.emergency-page nav .emergency-btn.danger {
  background: var(--danger);
}

.emergency-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--danger) 0%, #991B1B 100%);
  padding: 8rem 5% 4rem;
}

.emergency-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.emergency-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-emergency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: white;
  color: var(--danger);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-emergency:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.emergency-info {
  padding: 4rem 5%;
}

.emergency-info .info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.emergency-info .info-box.emergency {
  background: var(--danger);
  border-color: var(--danger);
  text-align: center;
  padding: 2rem;
}

.emergency-info .info-box.emergency p {
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.emergency-info .info-box.non-emergency {
  background: var(--secondary);
  border-color: var(--border);
  text-align: center;
  padding: 2rem;
}

.emergency-info .info-box.non-emergency p {
  margin-bottom: 1.5rem;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline-light:hover {
  background: var(--text);
  color: var(--primary);
}

.emergency-guidance {
  padding: 4rem 5%;
  background: var(--secondary);
  max-width: 900px;
  margin: 0 auto;
}

.emergency-guidance h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.emergency-guidance .lead {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.guidance-list {
  list-style: none;
  margin-bottom: 2rem;
}

.guidance-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.guidance-list li strong {
  color: var(--text);
}

.important-notice {
  padding: 2rem 5%;
  background: var(--primary);
  border-top: 1px solid var(--border);
  text-align: center;
}

.important-notice p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.important-notice strong {
  color: var(--accent);
}

/* Events Page */
.events-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.events-intro p {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.event-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.event-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  margin-bottom: 0.75rem;
}

.event-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.event-date,
.event-time,
.event-location {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.event-description {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Outreach Page */
.programs-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.programs-intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.programs-intro p {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.program-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.program-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.program-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.program-list {
  list-style: none;
}

.program-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.program-list li:last-child {
  border-bottom: none;
}

.resources-section {
  padding: 4rem 5%;
  background: var(--secondary);
}

.resources-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.resources-intro {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.resource-card {
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.resource-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.resource-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.resource-info {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.resource-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.resources-note {
  text-align: center;
  color: var(--text-muted);
}

.resources-note a {
  color: var(--accent);
  font-weight: 600;
}

/* Contact Page */
.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 4rem 5%;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.contact-card.emergency {
  background: linear-gradient(135deg, var(--danger), #991B1B);
  border-color: var(--danger);
}

.contact-card.emergency .contact-desc {
  color: rgba(255, 255, 255, 0.9);
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.contact-card.emergency h3 {
  color: white;
}

.contact-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-card.emergency .contact-number {
  color: white;
  font-size: 2.5rem;
}

.contact-email {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.contact-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-ctas {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-emergency-large {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--danger);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-emergency-large:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.location-directions {
  font-size: 0.85rem;
  font-style: italic;
}

/* Tips Section */
.tips-section {
  padding: 4rem 5%;
  background: var(--secondary);
}

.tips-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.tip-item {
  text-align: center;
  padding: 1rem;
}

.tip-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.tip-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.tip-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tips-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Footer */
footer {
  background: white;
  border-top: 4px solid var(--accent);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 1rem 0;
  font-size: 0.9rem;
}

.footer-column h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

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

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-background {
    width: 100%;
    clip-path: none;
    opacity: 0.3;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .location-map {
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 6rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .location-info {
    padding: 2rem;
  }

  /* New page styles */
  .page-hero {
    padding: 8rem 5% 4rem;
    text-align: center;
  }

  .page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .page-content {
    padding: 3rem 5%;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .officers-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 3rem 5%;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .emergency-hero {
    padding: 8rem 5% 4rem;
  }

  .emergency-info .info-grid {
    grid-template-columns: 1fr;
  }
}