body {
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #f1e6d7;
  text-align: center;
  color: #7a6c62;
}

h1 {
  margin-top: 30px;
  font-size: 36px;
  font-family: Georgia, 'Times New Roman', serif;
  color: #7a5c4d;
  text-decoration: underline;
}

.cards {
  display: inline-block;
  width: 300px;
  height: 420px; /* Increased height */
  margin: 20px;
  padding: 20px 20px 5px; /* Reduced bottom padding */
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  vertical-align: top;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.title h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  color: #5a4e45;
  font-family: Georgia, serif;
}

.des p {
  font-size: 14px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-bottom: 10px;
  color: #7d6e63;
  padding: 0 5px;
}

/* Glow Button */
.glow-hover {
  background-color: #938780;
  color: #f1e6d7;
  border: none;
  border-radius: 25px;
  padding: 10px 24px;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.glow-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.glow-hover:hover::before {
  left: 100%;
}

.glow-hover:hover {
  background-color: #a6978d;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

body::after {
  content: '';
  display: block;
  height: 0;
  margin-bottom: 0;
}
