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

#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}

.left-column {
  flex: 1;
  padding-right: 20px;
}

.right-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 300px;
  height: auto;
}

h1 {
  font-size: 4em;
  color: #ff4444;
  margin-bottom: 0;
}

h2 {
  font-size: 2em;
  color: #ff6666;
  margin-top: 0;
}

p {
  font-size: 1.2em;
  line-height: 1.6;
}

.contact {
  margin-top: 2em;
}

.email,
.phone {
  color: #ff4444;
  font-weight: bold;
}

@media (max-width: 768px) {
  .overlay {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }

  .left-column,
  .right-column {
    flex: unset;
    width: 100%;
    padding: 0;
  }

  .logo {
    max-width: 200px;
    margin-bottom: 20px;
  }

  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 1.5em;
  }
}