body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f8f7;
  color: #222;
}

header {
  background: #1f6f5b;
  color: #fff;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0 0 5px;
}

section {
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.filters {
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  margin-top: 20px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-group {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
}

.filter-group label {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.filter-group select {
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.results {
  margin-top: 20px;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
}

.review-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 15px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.review-title {
  font-weight: bold;
}

.review-meta {
  font-size: 0.85rem;
  color: #555;
  margin-top: 4px;
}

.review-rating {
  color: #e0a800;
  font-weight: bold;
}

.review-text {
  margin-top: 10px;
  font-size: 0.95rem;
}

.no-results {
  text-align: center;
  color: #666;
  margin-top: 20px;
}

footer {
  text-align: center;
  padding: 15px;
  font-size: 0.85rem;
  color: #666;
}

