body {
  font-family: Verdana, Geneva, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f1e6d7;
  color: #302115;
  text-align: center;
  font-size: 18px;
}

h1 {
  font-size: 36px;
  font-family: Georgia, serif;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #7a5c4d;
  text-decoration: underline;
}

/* Card container layout */
.cards {
  width: 260px;
  background-color: #ffffff;
  border-radius: 12px;
  margin: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.title h3 {
  margin: 12px 0 8px;
  font-size: 20px;
  color: #302115;
  font-family: Georgia, serif;
}

.des h4 {
  font-size: 16px;
  color: #7b433f;
  margin-bottom: 10px;
}

.des {
  padding: 0 10px 15px;
}

button {
  background-color: #938780;
  color: #f1e6d7;
  font-size: 16px;
  padding: 8px 18px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
  background-color: #302115;
  transform: scale(1.05);
}
.back-btn {
      position: fixed;
      top: 20px;
      left: 20px;
      background-color: #938780;
      color: #f1e6d7;
      font-size: 14px;
      padding: 8px 18px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      z-index: 999;
      transition: all 0.3s ease;
    }

    .back-btn:hover {
      background-color: #302115;
      transform: scale(1.05);
    }