.ask-form {
  background: #fff;
  padding: 30px;
  border: 2px solid #f58220;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 350px;
  margin: 30px auto;
  font-family: Arial, sans-serif;
}

.ask-form h2 {
  text-align: center;
  color: #cc3300;
  margin-bottom: 20px;
}

.ask-form input {
  width: 100%;
  padding: 10px;
  margin: 8px 0 4px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.ask-form span {
  color: red;
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
}

.ask-form a.button {
  display: block;
  background: #f58220;
  color: white;
  text-align: center;
  text-decoration: none;
  padding: 12px;
  border-radius: 5px;
  margin-top: 15px;
  font-weight: bold;
}

.ask-form a.button:hover {
  background: #e66e00;
}

/* ganesh result */
.ganesha-result {
  background: #fff;
  padding: 30px;
  border: 2px solid #f58220;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  /* max-width: 350px; */
  margin: 30px auto;
  font-family: Arial, sans-serif;
  text-align: center;
}

.ganesha-result h2 {
  color: #d35400;
  margin-bottom: 20px;
  font-size: 22px;
}

.ganesha-result p {
  font-size: 15px;
  margin: 12px 0;
}

.ganesha-result img {
  max-width: 100%;
  height: auto;
  margin-top: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.ganesha-result .back-button {
  margin-top: 20px;
  display: inline-block;
  background-color: #00aaff;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.ganesha-result .back-button:hover {
  background-color: #008dd4;
}