body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Verdana, sans-serif;
  overflow-x: hidden;
}

.container {
  display: flex;
  height: 100vh;
  width: 100%;
}

.sidebar {
  width: 200px;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li, .sidebar a {
  padding: 10px 0;
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.sidebar li:hover, .sidebar a:hover {
  color: #0af;
}

.logo {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 100;
}

.logo img {
  height: auto;          
  max-height: 500px;     
  width: auto;          
  max-width: 50vw;       
}

.main-content {
  flex: 1;
  background-color: black;
  position: relative;
  overflow-x: hidden;
  display: flex;
  transition: transform 0.3s ease;
}

.main-content section {
  min-width: 100%;
  padding: 20px;
  color: white;
}


.newsletter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  padding: 12px 16px;
  border-radius: 8px;
  color: white;
  max-width: 90%; 
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px; 
}

.newsletter input[type="email"] {
  flex: 1 1 200px; 
  padding: 8px;
  border: none;
  border-radius: 4px;
}

.newsletter button {
  flex: 0 1 auto;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  background-color: white;
  color: black;
  cursor: pointer;
}

.newsletter button:hover {
  background-color: #ddd;
}