body {
  font-family: 'Segoe UI', sans-serif;
  background: #f0f4f8;
  margin: 0;
  padding: 20px;
  color: #333;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  margin-bottom: 10px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  min-width: 200px;
}

#summary {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin: 10px 0 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination button {
  padding: 8px 12px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.pagination button.active {
  background: #006400;
  color: white;
  font-weight: bold;
}

.results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.park-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.park-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.park-content {
  padding: 15px;
}

.park-content h2 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #006400;
}

.park-content p {
  font-size: 14px;
  color: #444;
}

.park-content a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background: #006400;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}

.attribution {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  margin-top: 40px;
}

.attribution a {
  color: #006400;
  text-decoration: underline;
}

@media (max-width: 600px) {
  select {
    width: 100%;
  }
}
