/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: "Helvetica Neue", sans-serif;
    width: 100%;
    height: auto;
    overflow-x: hidden;
}

/* Background Video */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

/* Overlay Section */
.overlay {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    position: relative;
    z-index: 1;
}

.logo-container img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Content Styling */
.content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cta-link {
    color: #FF2EBB;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border 0.3s ease;
}

.cta-link:hover {
    border-bottom: 1px solid #00ffff;
}

/* Form Section */
.form-section {
    background-color: #ffffff;
    color: #000;
    padding: 3rem 1rem;
    text-align: center;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

