* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
  color: #fff;
  background: #000;
}

section {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align content to left */
  position: relative;
}

.overlay {
  background: rgba(0,0,0,0.55);
  padding: 3rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 2rem;
}

.left-text {
  text-align: left;
}

h1, h2 {
  margin-bottom: 1rem;
  color: #ff7f32; /* Orange garnet tone */
}

p, li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

footer {
  background: #111;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}