body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

.container {
  max-width: 700px;
  margin: 50px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 36px;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

ul {
  list-style: none;
  padding-left: 20px;
}

li {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  position: relative;
}

li:before {
  content: "\2022";
  color: #007BFF;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  left: -20px;
  top: 2px;
}

form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 70%;
}

button {
  padding: 10px 20px;
  margin-left: 10px;
  border: none;
  border-radius: 5px;
  background-color: #007BFF;
  color: #fff;
  cursor: pointer;
}

.disclaimer {
  font-size: 14px;
  color: #777;
  text-align: center;
  margin-top: 20px;
}

h2 {
  font-size: 24px;
  color: #007BFF;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 15px;
}

.countdown-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#timer-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

#timer {
  font-size: 28px;
  color: #007BFF;
  font-weight: bold;
  border: 2px solid #007BFF;
  border-radius: 5px;
  padding: 8px 16px;
}