* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  background: url('../images/bg.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
  color: #fff;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 2;
}

.container {
  width: 90%;
  max-width: 1100px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.logo {
  width: 220px;
  margin-bottom: 20px;
  border-radius: 20px;
}

h1 {
  font-size: 55px;
  margin: 20px 0;
}

h2 {
  color: #ffd54f;
  margin-bottom: 20px;
}

p {
  line-height: 1.8;
}

.products {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 35px 0;
}

.products span {
  background: #ffffff20;
  padding: 12px 20px;
  border-radius: 30px;
}

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

.box {
  background: #fff;
  color: #222;
  padding: 20px;
  width: 100px;
  border-radius: 15px;
}

.box h2 {
  font-size: 35px;
  color: #006742;
}

.buttons {
  margin-top: 30px;
}

.btn,
.btn2 {
  display: inline-block;
  padding: 15px 35px;
  margin: 10px;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
}

.btn {
  background: #ffd54f;
  color: #222;
}

.btn2 {
  border: 2px solid white;
  color: white;
}

footer {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 30px;
  }

  h1 {
    font-size: 35px;
  }

  .box {
    width: 80px;
    padding: 15px;
  }
}
