body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #a8edea, #fed6e3); /* enticing gradient */
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

h1 {
  color: #008000;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.apply-btn {
  display: inline-block;
  background-color: #8b4513;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.apply-btn:hover {
  background-color: #5a2e0f;
}

.disclaimer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #333;
}

.highlight {
  color: #8b008b;
  font-weight: bold;
}