.jf-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    box-sizing: border-box;
}

.jf-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.jf-hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jf-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}

.jf-hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.jf-hero-title {
    font-size: 48px;
    margin-bottom: 10px;
}

.jf-hero-description {
    font-size: 20px;
    margin-bottom: 20px;
}

.jf-hero-buttons {
    display: flex;
    gap: 15px;
}

.jf-btn-primary,
.jf-btn-secondary {
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
}

.jf-btn-primary {
    background: #fff;
    color: #000;
}

.jf-btn-secondary {
    background: rgba(255,255,255,0.3);
    color: #fff;
}
