/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: Arial, sans-serif;
  background-color: #181818;
  color: #f0f0f0;
  line-height: 1.6;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #f0f0f0;
  margin: 5px;
}

/* Container styling */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100vh;
  padding: 0;
}

/* Left column (Image) */
.left-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}

.left-column img {
  max-width: 80%;
  height: auto;
}

/* Right column (Text content) */
.right-column {
  flex: 1;
  background-color: white;
  color: #181818;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.statement {
  margin-bottom: 20px;
}

.statement h3 {
  color: #b90e0a;
  margin-bottom: 10px;
}

/* Navbar styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #050203;
  padding: 15px;
}

.navbar .nav_links {
  display: flex;
  list-style: none;
}

.navbar .nav_links li {
  margin-left: 20px;
}

.navbar .nav_links a {
  color: #f0f0f0;
  list-style: none;
  font-size: 18px;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1em;
}

.nav-links li a:hover {
  color: #f0a500;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .left-column {
    height: 50vh;
  }

  .right-column {
    padding: 20px;
  }

  .navbar {
    padding: 10px 0px;
  } 

  .nav_links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: -100%;
    background-color: #050203;
    transition: all .1s ease;
  }

  .nav_links.active {
    left: 0;
    top: 50px;
  }

  .nav_links li {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .burger {
    display: block;
  }
}