/* === Base Styles === */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
}

h1, h2, h3 {
  margin-top: 0;
}

a {
  color: inherit;
}

/* === Common Button Styles === */
.cta-button {
  background-color: #007B5E;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #005f48;
}

button {
  background: #007B5E;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #005f48;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-size: 1em;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}