/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* Body Styling */
body {
  background: #efebe5;
  color: #333;
  line-height: 1.6;
}

/* Card Container */
.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 100px 20px 40px;
}

/* Individual Card */
.card {
  width: 100%;
  max-width: 325px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Card Image */
.card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card Content */
.card-content {
  padding: 16px;
}

.card-content h1 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #3e2b1f;
}

.card-content p {
  font-size: 15px;
  color: #623e2a;
}

/* Button Styling */
.card-content .btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #623e2a;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 16px;
  transition: background-color 0.3s ease;
}

.card-content .btn:hover {
  background-color: #8a5a3b;
}
/*Back Button*/
.back-to {
  width: 100%;
  padding: 40px 20px;
  background-color: #efebe5;
  text-align: center;
}
.back-to p {
  font-size: 16px;
  margin: 10px 0;
}
.back-to a {
  color: #1f5909;
  text-decoration: none;
  font-weight: bold;
}

.back-to a:hover {
  text-decoration: underline;
}
