* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f7f9f7;
  color: #222;
}

.navbar {
  background: #f7f9f7;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  font-weight: bolder;
}

.navbar .logo {
  font-weight: 700;
  font-size: 2.4rem;
}

.navbar nav a {
  color: #000000;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
}


.nav-links a {
  margin-left: 25px;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom: 2px solid #00ff08;
  color: #4CAF50;
}

.container {
  max-width: 700px;
  background: #fff;
  margin: 3rem auto;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h1 {
  color: #214b33;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #555;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

input, select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

input:focus, select:focus {
  border-color: #214b33;
  outline: none;
}

.timeframe {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-submit {
  width: 100%;
  background: #29453e;
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #388e3c;
}

.terms {
  text-align: center;
  margin-top: 1rem;
  color: #777;
  font-size: 0.9rem;
}

footer {
  background: #f7f9f7;
  color: #000000;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

