.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: #FFC72C;
}

.hero-overlay h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #ffffffcc;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #FFC72C;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e6b800;
    transform: translateY(-2px);
}
