/* style.css */
body {
  background-color: #1aa4d2;
  font-family: sans-serif;
}

header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.suggestion {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

.suggestion a {
  text-decoration: none;
  color: inherit;
}

.suggestion .card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  padding: 20px;
}

.suggestion .card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.suggestion img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.price {
  font-size: 15px;
  font-style: italic;
  color: red;
  display: flex;
  justify-content: flex-end;
}
.contact,
.title {
  color: rgb(0, 106, 255);
}
