/* Thank You Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);

  /* Flexbox Centering */
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  text-align: center;
  position: relative;
  font-family: "Amsi Pro", sans-serif;
}

.modal-content h2 {
  color: #e52421;
  margin-bottom: 10px;
  font-weight: 700;
}

.modal-content p {
  font-size: 16px;
  color: #333;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

.close-btn:hover {
  color: #e52421;
}
