* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'EB Garamond', serif;  font-size: 17px;
  line-height: 1.55; /* You can adjust this value */
}


.btn {
  padding: 10px 60px;
  background: #fff;
  border: 0;
  outline: none;
  cursor: pointer;
  font-size: 22px;
  font-weight: 500;
  border-radius: 30px;
}
.popup {
  width: 90%;
  max-width: 500px;
  min-height: 300px;
  height: auto;
  background: #96b8b5;
  border-radius: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  text-align: center;
  padding: 20px;
  color: #333;
  visibility: hidden;
  transition: transform 0.4s, top 0.4s;
  z-index: 1001;
  box-sizing: border-box;
}

.open-popup {
  visibility: visible;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
}
.popup img {
  width: 80px;
  margin-top: -50px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.popup h2 {
  font-size: 38px;
  font-weight: 500;
  margin: 30px 0 10px;
}
button {
  --color: black;
  font-family: inherit;
  display: inline-block;
  width: 6em;
  height: 2.6em;
  line-height: 2.5em;
  overflow: hidden;
  margin: 20px; /*space betwen above text*/
  font-size: 17px;
  z-index: 1;
  border: 1;
  border-radius: 0;
  position: relative;
  border-radius: 10px;  
  /* border-bottom-left-radius: 10px;   //css for each side
  border-top-left-radius: 10px;  
  border-bottom-right-radius: 10px;    */

}

button::before {
  position: absolute;
  content: "";
  background: var(--color);
  width: 150px;
  height: 200px;
  z-index: -1;
  border-radius: 50%;
}

/* Removed button hover effects */

button:before {
  top: 100%;
  left: 100%;
}

/* Mobile responsiveness for popup */
@media screen and (max-width: 768px) {
  .popup {
    width: 95%;
    max-width: none;
    margin: 10px;
    padding: 15px;
    font-size: 15px;
  }
  
  .popup img {
    width: 60px;
    margin-top: -30px;
  }
  
  .popup h2 {
    font-size: 28px;
    margin: 20px 0 8px;
  }
  
  .popup p {
    font-size: 14px;
    margin: 8px 0;
  }
  
  button {
    width: 8em;
    height: 2.4em;
    font-size: 15px;
    margin: 15px;
  }
}

@media screen and (max-width: 480px) {
  .popup {
    width: 98%;
    padding: 12px;
    font-size: 14px;
  }
  
  .popup img {
    width: 50px;
    margin-top: -25px;
  }
  
  .popup h2 {
    font-size: 24px;
    margin: 15px 0 6px;
  }
  
  .popup p {
    font-size: 13px;
    margin: 6px 0;
  }
  
  button {
    width: 7em;
    height: 2.2em;
    font-size: 14px;
    margin: 12px;
  }
}