/* Global styles */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

/* Header styles */

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

.header-logo {
  font-size: 1.8em;
  font-weight: 600;
  margin-left: 20px;
}

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

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

.header-nav a[href="#menu"] {
  position: absolute;
  right: 20px;
  top: 30px;
  font-size: 1.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.header-nav a[href="#menu"]::before {
  content: '☰'; /* Unicode for the menu icon */
  margin-right: 5px;
}

/* 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: center;
  margin: 40px 0;
}

.content-section img {
  max-width: 40%;
  margin-right: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-section.text {
  max-width: 60%;
}

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

.list-section.list {
  max-width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 40px;
}

.list-section img {
  max-width: 45%;
  margin-left: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

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

/* Footer styles */

.footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  clear: both;
}