.before-after {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.before-after h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  color: #777;
  margin-bottom: 40px;
}

.ba-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

.ba-container {
  position: relative;
  width: 100%;
  height: 400px;
}

.ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.ba-info {
  padding: 20px;
  text-align: left;
}

.ba-info h3 {
  margin-bottom: 10px;
}

.price {
  font-weight: bold;
  margin: 10px 0;
}

button {
  background: linear-gradient(135deg, #61784c, #b88b52);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hoverr {
  background: #e55a00;
  transform: scale(1.05);
}