/* General Page Background & Text */
body {
  background-color: #fdfcf5; /* light warm background */
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
}

/* Heading Styling */
h1 {
  color: #2a7a2e; /* deep green for eco look */
  font-weight: bold;
}

p {
  font-size: 1rem;
  color: #444;
}

/* Navbar */
.navbar {
  border-bottom: 2px solid #ffd54f; /* solar yellow underline */
}

.navbar-brand {
  color: #2a7a2e !important;
  font-weight: 700;
}

.nav-link {
  color: #444 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2a7a2e !important;
}

/* Quick Tips Box */
.quick-tips {
  background-color: #fff8e1; /* light solar yellow */
  border-left: 5px solid #fbc02d; /* strong yellow bar */
  padding: 0.5rem 0.75rem;
  margin-bottom: 1rem;
  color: #795548;
  font-weight: 600;
  font-size: 1.1rem;
}

.card-body ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.card-body li {
  margin-bottom: 0.4rem;
  color: #5d4037; /* earthy brown text */
}

/* Card Styling */
.card {
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.card-body h5 {
  color: #2a7a2e;
  margin-bottom: 0.75rem;
}

/* Footer */
footer {
  border-top: 3px solid #ffd54f;
}

footer a {
  text-decoration: underline;
}

footer a:hover {
  color: #fbc02d !important;
}
