* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f5f7fa;
  color: #333;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #2c3e50;
  margin-bottom: 10px;
}

/* Cards grid layout */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

/* Card styling */
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom: 1px solid #eaeaea;
}

.card-content {
  padding: 20px;
}

.card h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.card-location {
  font-size: 15px;
  color: #000000;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.card-location:before {
  content: "📍";
  margin-right: 5px;
}

.card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

.loading {
  text-align: center;
  font-size: 18px;
  padding: 40px;
  color: #7f8c8d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cards {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
