body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #0f1e1e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  flex-direction: column;
  padding: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 15px;
}

h1 {
  font-size: 3rem;
}

h6 {
  color: #fb412a;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h5 {
  color: #fb412a;
  margin-top: 0;
  font-weight: normal;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 2rem 0;
}

.countdown-box {
  background-color: transparent;
  border: 1px solid #4b5563;
  padding: 20px 30px;
  font-size: 1.5rem;
}

.newsletter {
  margin-top: 2rem;
}

.newsletter .form-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter .form-box input[type="email"] {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #333;
  background-color: transparent;
  color: #fff;
  width: 250px;
  outline: none;
}

.newsletter .form-box input[type="email"]:focus {
  outline: none;
  box-shadow: none;
}

.newsletter .form-box button {
  padding: 10px 20px;
  background-color: #dc2626;
  color: white;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

.newsletter .form-box button:hover {
  background-color: #ef4444;
}

.btn-contact {
  display: inline-block;
  margin-top: 2rem;
  color: white;
  border: 1px solid white;
  padding: 10px 20px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: white;
  color: #0f1e1e;
}

@media (max-width: 600px) {
  .countdown {
    flex-wrap: wrap;
  }

  .countdown-box {
    padding: 15px 20px;
    font-size: 1.2rem;
  }

  .newsletter input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 4px;
  }

  .newsletter button {
    width: 100%;
    border-radius: 4px;
  }
}
