* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background: #111;
    color: white;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 9999;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    position:relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav ul li a:hover {
    color: #00ffcc;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.hero {
    position: relative; 
    overflow: hidden;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)) center/cover;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.btn {
    background: #00ffcc;
    color: #111;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    display: inline-block;
}

h1, h2 {
    margin-bottom: 1.5rem;
}

form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form input, form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

form button {
    background: #00ffcc;
    color: #111;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 2rem 5%;
    margin-top: 4rem;
}

.cookie-bar {
    background: #222;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 8px;
    display: none !important;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-bar button {
    background: #00ffcc;
    color: #111;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
}

.logo img {
    height: 100px;
    width: auto;
}

/* Mobile Menu */
.desktop-menu { display: flex; gap: 2rem; }
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 4px; }
.hamburger span { display: block; width: 25px; height: 3px; background: white; }
.mobile-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #111; padding: 1rem 5%; gap: 1rem; }
.mobile-menu li a { color: white; text-decoration: none; font-weight: 500; padding: 0.5rem 0; display: block; }
.mobile-menu.active { display: flex; }

@media (max-width: 768px) {
    .desktop-menu { display: none; }
    .hamburger { display: flex; }
    nav ul { gap: 1rem; font-size: 0.95rem; }
    .hero h1 { font-size: 2.5rem; }
    .split-container {
        flex-direction: column-reverse;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    .video-column {
        width: 100%;
        max-width: 300px;
        z-index: 1;
    }
}

.split-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.text-column { flex: 1; }

.video-column {
  flex: 1;
  max-width: 400px;
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mute-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 14px;
  transition: background 0.3s;
}

#mute-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.jobs-container { flex-wrap: wrap; }
.job-description { flex: 1; min-width: 300px; }