body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.content {
    z-index: 2;
}

h1 {
    font-size: 3rem;
    margin: 0;
}

p {
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #f90;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffcc00;
}

.about,
.contact {
    padding: 2rem 1rem;
    text-align: center;
}

.about h2,
.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

.contact form input,
.contact form textarea {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
}

.contact form button {
    padding: 0.75rem;
    background-color: #f90;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact form button:hover {
    background-color: #ffcc00;
}