@media only screen and(max-width: 550px){
  .pricing-box {
    width: 90%;
    font-size: 14px;
    line-height: 1.3;
    margin: 10px auto;
  }

  #nav-bar {
    width: 100%;
    position: static; /* You can switch it if needed for mobile */
    text-align: center;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #e0e3af;

  color: #333;
}
p {
  padding-top: 30px;
  font-size: 18px;
  line-height: 1.0;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}


h1{font-family: Raleway, sans-serif;
font-size: 1.5rem;
text-align: center;}

 .form-section{ background-color: #e0e3af;
  padding: 50px 20px;
  text-align: center;}

#email {
  padding: 5px;
  width: 300px;
  max-width: 80%;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 16px;
}

 h2, h3{
  font-family: arial, sans-serif;
  font-size: 20px;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 30px;
}
#submit {
  background-color: rgb(199, 33, 205);
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#submit:hover {
  background-color: #555;
}

header {
  background: #fff;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
}
#nav-bar {
  position: fixed;
  top: 0;
 right: 0;
  width: 100%;
  background-color: #fff; /* Set your desired color */
  z-index: 1000; /* Keeps it above other elements */
  padding: 15px;
  text-align: right;
}

 .lists {
   display: grid;
  font-size: 16px;
  margin-right: 20px;
  padding: 20px 50px;
  text-align: center;
  list-style-type: none;
  grid-auto-flow: row;
  gap: 25px;
  font-family: sans-serif;
}

.lists::before {
  content: "❤️ ";
  margin-right: 5px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

.hero {
  background: #e2e2e2;
  padding: 100px 20px;
  text-align: center;
}

iframe {
  padding: 50px 50px;
  width: 100%;
  align-items: center;
}

footer {
  background: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}
.nav-link {
  color: rgb(199, 33, 205);
  background-color: #e0e3af;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-link:hover {
  background-color: #555;
}
.pricing-box{
 background-color: transparent;
 padding: 10px;
  color: rgb(0, 0, 0);
  border: 2px solid rgb(199, 33, 205);
  font-size: 15px;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
 
  width: 250px;
 text-align: center;
}
.center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* optional: makes it center vertically on full screen */
}

button{
  background-color: rgb(199, 33, 205);
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease; 
}

#quantity:hover {
  background-color: #555;
}