body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #222;
}

.container {
  max-width: 500px;
  margin: auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

h1 {
  text-align: center;
}

.slogan {
  text-align: center;
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

input[type="number"],
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #377dff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

button:hover {
  background-color: #2f6de0;
}

.base-rate {
  margin-top: 10px;
  color: #555;
}

.checklist label {
  display: flex;
  align-items: center;
  margin: 8px 0;
  gap: 10px;
  font-size: 1rem;
}

.progress-bar {
  background-color: #eee;
  border-radius: 20px;
  overflow: hidden;
  height: 20px;
  margin-top: 15px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background-color: green;
  transition: width 0.5s ease;
}

.percent {
  text-align: center;
  font-weight: bold;
  margin-top: 8px;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
}
