/* Global styles */

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

body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header styles */

.header {
  background-color: black;
  color: white;
  padding: 10px;
  text-align: left;
  max-width: 100%;
}

.header-logo {
  font-size: 1.5em;
  margin-left: 20px;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav a {
  color: white;
  text-decoration: none;
}

/* Content styles */

.content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}

.justified-text {
  text-align: justify;
  margin: 20px 0;
}

.content-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
}

.content-section img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.content-section.text {
  max-width: 45%;
  text-align: justify;
  padding: 0 20px;
}

.list-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 40px 0;
}

.list-section.list {
  width: 48%;
}

.list-section ul {
  list-style-type: none;
  padding: 0;
}

.list-section li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.list-section li h3 {
  margin: 0;
  font-size: 1.2em;
}

.list-section li img {
  margin-right: 15px;
}

/* Parallax effect */

.parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.parallax img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform: translateY(0);
  will-change: transform;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

footer {
  background-color: #333;
  padding: 10px;
  width: 100%;
  text-align: center;
}

.respmenu {
  color: white;
  position: relative;
  background: #123456;
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.respmenu input[type="checkbox"] {
  opacity: 0;
}

.respmenu nav {
  display: none;
}

.respmenu input:checked ~ nav {
  display: block;
}

.respmenu input:checked ~ .fa-bars {
  display: none;
}

.respmenu input:not(:checked) ~ .fa-times {
  display: none;
}

.right-image {
  width: 40%;
  float: right;
  margin: 10px;
}

.image-container {
  float: left;
  margin-right: 20px;
}

.text-container {
  overflow: hidden;
  padding-left: 20px;
}

.left-image {
  width: 450px;
  height: 300px;
  margin-left: 50px;
}

.wider-text {
  margin-top: 50px;
}

.list {
  margin-left: 20px; /* adjust the value to your liking */
}