* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  font-family: sans-serif;
  color: white;
  padding: 10px;
}

.h2heading {
  color: white;
  text-align: left;
  font-size: 30px;
  margin-top: 20px;
  font-weight: 800;
  text-decoration: none;
}

.header {
  background-color: #1fe067;
  padding: 20px;
  text-align: center;
  font-size: 25px;
  font-weight: 800;
}

.sub-heading {
  text-align: center;
  color: white;
  font-size: 20px;
  margin-top: 20px;
}

.video {
  width: 100%;
  height: 500px;
  margin-top: 30px;
}

.chose {
  display: flex;
  justify-content: space-around;
  align-items: self-start;
  margin: 20px 0;
  flex-direction: row;
}

.contentKyaMilega {
  display: flex;
  justify-content: center;
  align-items: left;
  flex-direction: column;
  padding: 10px;
  font-size: 20px;
}

.instructionline {
  font-size: 20px;
  font-weight: 500;
  color: white;
  margin-top: 10px;
  text-align: left;
}

.button-container {
  text-align: center;
  margin:40px 0;
}

.buy-now-btn {
  background-color: #4e83e8;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.buy-now-btn:hover {
  background-color: #2d4c88;
  transform: scale(1.05);
}

.buy-now-btn:active {
  background-color: #1e3a5d;
}

@media (max-width: 768px) {
  .header {
    font-size: 15px;
    font-weight: 800;
    color: black;
  }

  .video {
    width: 100%;
    height: 300px;
  }

  .chose {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: self-start;
    margin: 20px 0;
    flex-direction: column;
  }

  .h2heading {
    color: #1fe067;
  }
}
