/* Base Styles */ 
.health-safety-page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #f3f3f3;
}

/* Hero Section */
.safety-hero {
  background: linear-gradient(135deg, #2a2a2a, #e28a00);
  color: #fff;
  padding: 6rem 1rem 4rem;
  text-align: center;
}

.safety-hero .container {
  max-width: 900px;
  margin: 0 auto;
}

.safety-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.safety-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #f1f1f1;
}

.safety-icon i {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #ffc107;
}

/* Principles Section */
.safety-principles {
  padding: 4rem 1.5rem;
  background-color: #fff;
}

.safety-principles h2 {
  color: #e28a00;
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.safety-principles p {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.05rem;
  color: #555;
}

.principles-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
}

.principles-list li {
  background: #fdf3e7;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  border-left: 5px solid #e28a00;
  border-radius: 4px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.principles-list i {
  color: #e28a00;
  font-size: 1.2rem;
}

/* Stats Section */
.safety-stats {
  padding: 4rem 1.5rem;
  background-color: #f6f6f6;
  text-align: center;
}

.safety-stats h2 {
  color: #e28a00;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

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

.stat-box {
  background-color: #fff;
  border: 1px solid #e1e5ea;
  border-radius: 6px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.stat-box h3 {
  font-size: 2.5rem;
  color: #e28a00;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.stat-box p {
  font-size: 1rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .safety-hero h1 {
    font-size: 2rem;
  }

  .safety-hero p {
    font-size: 1rem;
  }

  .stat-box h3 {
    font-size: 2rem;
  }

  .stat-box p {
    font-size: 0.95rem;
  }
}
