
        /* Add any specific styles for this page here, or in your style.css */
        .safety-section {
            padding: 60px 0;
            text-align: center;
        }
        .safety-section h2 {
            margin-bottom: 40px;
            font-weight: bold;
            color: #343a40;
        }
        .safety-item {
            margin-bottom: 30px;
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .safety-item:hover {
            transform: translateY(-5px);
        }
        .safety-item img {
            max-width: 100%;
            height: 200px; /* Fixed height for consistency */
            object-fit: cover; /* Ensures image covers the area without distortion */
            border-radius: 5px;
            margin-bottom: 15px;
        }
        .safety-item h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #007bff;
        }
        .safety-item p {
            font-size: 1rem;
            color: #6c757d;
        }
        .hero-safety {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1500x500?text=Safety+First+Hero') no-repeat center center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .hero-safety h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .hero-safety p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto;
        }
    