/* Modal overlay */
#learn-more-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* shown via JS */
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

/* Bubble content */
#learn-more-bubble {
  background: #fff;
  padding: 20px;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  text-align: center;
}

#learn-more-text {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

#learn-more-ok {
  background: #0077cc;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

#learn-more-ok:hover {
  background: #005fa3;
}
