body {
  background-color: #000017;
  padding: 100px 120px;
  height: 50vh;
}
.container {
  display: flex;
  justify-content: space-between;
}
.left > p {
  color: #8983c6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: small;
}
.left > h2 {
  color: white;
  font-family: "Times New Roman", Times, serif;
  font-size: 50px;
  margin: 0px;
}
.left > button {
  background-color: white;
  color: #000017;
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  margin: 20px 0px 0px 0px;
}
.left > label {
  color: #8983c6;
  display: block;
  margin: 40px 0px 0px 0px;
}
.email > button {
  background-color: #18182f;
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  border: dashed black;
  margin: 20px 0px 0px 0px;
}
.right {
  display: flex;
  gap: 200px;
  font-family: Arial, Helvetica, sans-serif;
}
.quick > p {
  color: #8983c6;
  margin: 0px;
}
.quick > a {
  color: white;
  display: block;
  padding: 16px 0px 0px 0px;
  text-decoration: none;
}
.information > p {
  color: #8983c6;
  margin: 0px;
}
.information > a {
  color: white;
  display: block;
  padding: 16px 0px 0px 0px;
  text-decoration: none;
}
a {
  position: relative;
  width: max-content;
}
a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  background-color: #8983c6;
  height: 4px;
  width: 4px;
  border-radius: 50px;
  transition: 0.5s;
}
a:hover::before {
  width: 100%;
}
hr {
  margin-top: 100px;
  background-color: #8983c6;
  border: none;
  height: 2px;
}
.footer {
  display: flex;
  justify-content: space-between;
  margin: 50px 0px 0px 0px;
  align-items: center;
}
.reserved > p {
  color: #8983c6;
}
.icons > i {
  margin-right: 10px;
}


/* Existing CSS yahan aapke code ke sath hoga */

/* Responsive Styles */
@media (max-width: 1200px) {
  body {
    padding: 50px 60px;
    height: auto; /* Height adjust for smaller screens */
  }

  .container {
    flex-direction: column;
    gap: 50px;
  }

  .right {
    flex-direction: column;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 30px 20px;
  }

  .left > h2 {
    font-size: 36px;
  }

  .left > button,
  .email > button {
    padding: 10px 24px;
  }

  .right {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 20px 10px;
  }

  .left > h2 {
    font-size: 28px;
  }

  .left > p,
  .quick > p,
  .information > p {
    font-size: 12px;
  }

  .left > button,
  .email > button {
    width: 100%;
    text-align: center;
  }

  .right {
    gap: 20px;
  }
  
  .footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
