body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #000;
  background: #1e1e1e;
}

.background {
  background: url('background.jpeg') no-repeat center center/cover;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: -1;
}



header {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 3rem;
  margin: 0;
}

header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  letter-spacing: 2px;
}

.menu-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.menu-left,
.menu-right {
  flex: 1;
  min-width: 300px;
}

section {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h2 {
  background: #1e4d91;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: inline-block;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #ccc;
  padding: 0.5rem 0;
}

li span:last-child {
  font-weight: bold;
}
