/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f6f9;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
    color: #fff;
}

.logo {
    font-size: 24px;
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 50px 20px;
    background: #35424a;
    color: #fff;
}

.hero-section h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
}

.hero-section p {
    font-size: 18px;
    margin: 10px 0 0;
}

/* Safety Section Styling */
.safety-section {
    padding: 20px 40px;
    background: #fff;
}

.safety-section h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.safety-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.safety-card {
    background: #fff;
    border: 1px solid #e0e4e8;
    border-radius: 8px;
    padding: 20px;
    width: calc(33.333% - 40px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
}

.safety-card h3 {
    margin-top: 0;
    color: #35424a;
    font-size: 20px;
}

.safety-card p {
    font-size: 14px;
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 40px 20px;
    text-align: center;
    background: #333;
    color: #fff;
}

.contact-section form {
    display: inline-block;
    max-width: 500px;
    width: 100%;
    text-align: left;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.contact-section button {
    background: #ff5a5f;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .safety-container {
        flex-direction: column;
        align-items: center;
    }

    .safety-card {
        width: 90%;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }
}
