/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #fdfaf6, #e9f5ec);
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Navbar */
nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  background-color: #e0f0e6;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
}

nav li {
  margin: 0 10px;
}

nav a, nav span {
  text-decoration: none;
  color: #275f51;
  font-weight: bold;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.5rem;
  color: #2c7860;
}

/* Goals Section */
#goals {
  background-color: #fff6db;
  border-left: 5px solid #ffcc00;
  padding: 25px;
  margin: auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#goals h2 {
  color: #cc9900;
  margin-bottom: 15px;
}

#goals ul {
  list-style: none;
  padding-left: 0;
}

#goals li {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* Footer */
footer {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}