:root {
  /* Background image for cleaning service company */
  --bg-image: url('images/cleaning-background.png');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-image) no-repeat center center/cover;
  position: relative;
  color: #fff;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 2rem;
}

.logo img {
  max-width: 150px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

input[type="email"] {
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  flex: 1;
}

button {
  padding: 0.5rem 1rem;
  border: none;
  background: #ff6600;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #e65c00;
}

footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
