/* Hero Content for Safety Page */
.safety-hero {
    height: calc(100vh - 100px); /* Full height minus header */
    background-color: #ff5555;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .safety-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
    font-weight: bold;
  }
  
  .safety-description {
    font-size: 18px;
    color: #f8f8f8;
    max-width: 600px;
    line-height: 1.5;
  }
  