body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    overflow: hidden;
    color: white;
}

#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
}

h1 {
    font-size: 2em;
    margin-bottom: 15px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: #ff9800;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-btn:hover {
    background-color: #e68900;
}
