.flip-card-1926 {
  background-color: transparent;
  width: 100%;
  height: 400px;
  perspective: 1000px;
}

.flip-card-inner-1926 {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card-1926:hover .flip-card-inner-1926 {
  transform: rotateY(180deg);
}

.flip-card-front-1926, .flip-card-back-1926 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card-front-1926 {
  background-color: #f1f1f1;
  color: black;
}

.flip-card-back-1926 {
  background-color: #2980b9;
  color: white;
  transform: rotateY(180deg);
}

.front-title-1926 {
	font-size: 24px;
	margin-bottom: 20px;
}

.front-price-1926 {
	font-size: 36px;
	font-weight: bold;
}

.back-title-1926 {
	font-size: 20px;
	margin-bottom: 20px;
	color: white;
}

.back-features-1926 {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
}

.back-features-1926 li {
	margin-bottom: 10px;
}

.back-button-1926 {
	background-color: white;
	color: #2980b9;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: background-color 0.3s, color 0.3s;
}

.back-button-1926:hover {
	background-color: #333;
	color: white;
}