body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #708238; /* Olive Green */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  max-width: 800px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.3); /* Contrast overlay */
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.logo {
  width: 200px;
  margin-bottom: 30px;
}

h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

h1 span {
  display: block;
  font-size: 40px;
  color: #f5f5f5;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 10px;
}
