body {
  font-family: Arial, sans-serif;
  background: #f4f6f9;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.logo img {
  max-width: 180px;
  margin-bottom: 20px;
}

h2 {
  color: #333;
  margin-bottom: 15px;
}

p {
  font-size: 16px;
  color: #555;
  margin: 10px 0;
  line-height: 1.6;
}

.highlight {
  color: #2e7d32;
  font-weight: bold;
}

.countdown {
  margin-top: 15px;
  font-weight: bold;
  font-size: 18px;
  color: #e53935;
}
.logo {
  display: flex;
  justify-content: space-between; /* pushes logos to far left & far right */
  align-items: center;
  margin-bottom: 20px; /* spacing below logos */
}

.logo img {
  max-height: 70px; /* adjust size if needed */
}