/* Dropdown for Sign Up Free button */
.signup-dropdown {
  position: relative;
  display: inline-block;
}
.signup-dropdown-btn {
  background-color: #7C3AED;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.6em 1.6em;
  border-radius: 2em;
  border: 2px solid #faf9fc;
  margin-left: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.12);
  transition: background 0.2s, color 0.2s;
}
.signup-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  border-radius: 1em;
  z-index: 1000;
  right: 0;
  top: 110%;
}
.signup-dropdown-content a {
  color: #1E1E1E;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 1rem;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 0.5em;
  transition: background 0.2s;
}
.signup-dropdown-content a:last-child {
  border-bottom: none;
}
.signup-dropdown-content a:hover {
  background-color: #f3f0fa;
}
.signup-dropdown.show .signup-dropdown-content {
  display: block;
}
