.mutual-fund-form-section {
  padding: 3rem;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.mutual-fund-form {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

fieldset {
  border: none;
  margin-bottom: 2rem;
}

legend {
  font-weight: bold;
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
}

input, select {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.investment-amount-group {
  display: flex;
  gap: 1rem;
}

.cta-button {
  background-color: #00704A;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #005f3c;
}
a {
  text-decoration: none;
}

