
.hero-section {
    background-image: url('/static/home/images/saftey-background.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
}

.video-frame {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    margin-top: 30px;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}