* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 600px;
  width: 100%;
}

.logo h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.content p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
}

#countdown {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}

#countdown div {
  background: #e8e8e8;
  padding: 10px 15px;
  border-radius: 8px;
  min-width: 60px;
}

#countdown span {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
}

#countdown small {
  font-size: 0.8rem;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.subscribe-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.subscribe-form button {
  padding: 10px;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.subscribe-form button:hover {
  background-color: #1a242f;
}

.contact {
  font-size: 0.9rem;
}

.contact a {
  color: #2c3e50;
  text-decoration: none;
}
