body {
  margin: 0;
  padding: 0;
  background: url('img/Background.jpeg') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
}

.logo {
  max-width: 250px;
  margin-bottom: 20px;
}

.headline {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.subscribe-form input[type="email"] {
  padding: 0.75rem;
  width: 250px;
  max-width: 100%;
  border: none;
  border-radius: 6px;
}

.subscribe-form button {
  padding: 0.75rem 1.5rem;
  background-color: #26C4B2;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.subscribe-form button:hover {
  background-color: #26C4B2;
}

.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 0.9rem;
}

.footer a {
  color: #ffffffaa;
  text-decoration: underline;
  margin: 0 10px;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #fff;
  color: #000;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.modal-content h2 {
  margin-top: 0;
}

.close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #000;
}