/* Container holding the product cards */
.products {
  display: flex;
  gap: 20px; 
  justify-content: center; 
}

/* For screens with a max-width of 530px or less */
@media (max-width: 530px) {
  .products {
    flex-direction: column;
  }
}

.card {
  padding-top: 20px; 
  padding-bottom: 10px; 
  padding-left: 15px; 
  padding-right: 15px; 
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 315px;
  text-align: center;
  font-family: arial;
  color: grey; 
  margin: 0;
}

.product-image {
  width: 80%;  /* Make the image expand to the width of the card */
  max-height: 200px;  /* Set a maximum height */
  object-fit: cover;  /* Ensure the image covers the area without stretching */
  border-radius: 5px; /* Optional rounded corners */
  margin-top: 20px;
}

.card button {
  border: none;
  outline: 0;
  padding: 12px;
  color: white;
  background-color: #ff0000;
  text-align: center;
  cursor: pointer;
  width: 80%;
  font-size: 19px;
  border-radius: 7px; /* Optional rounded corners */
  font-weight: bold;
}

.card button:hover {
  opacity: 0.6;
}


.redbutton button {
  border: none;
  outline: 0;
  padding: 12px;
  color: white;
  background-color: #ff0000;
  text-align: center;
  cursor: pointer;
  width: 40%;
  font-size: 19px;
	 border-radius: 7px; /* Optional rounded corners */
	font-weight: bold;
}

.redbutton button:hover {
  opacity: 0.6;
}


.K2-pros-cons {
  font-family: "Raleway", sans-serif;
  display: flex;
  max-width: 700px;
  margin: 32px auto;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.4);
}
.K2-pros-cons .heading {
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin: 0;
  padding: 16px 24px;
}
.K2-pros-cons .pros-container .heading {
  background: #02c39a;
}
.K2-pros-cons .cons-container .heading {
  background: #e63946;
}
.K2-pros-cons .pros-container ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  padding-right: 16px;
  color: #02c39a;
  display: block;
}
.K2-pros-cons .cons-container ul li::before {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  padding-right: 16px;
  color: #e63946;
  display: block;
}
.K2-pros-cons .pros-container,
.K2-pros-cons .cons-container {
  flex: 1;
}
.K2-pros-cons .pros {
  border-right: 1px solid #eee;
}
.K2-pros-cons ul {
  padding: 8px 0;
  list-style: none;
  margin: 0;
}
.K2-pros-cons ul li {
  padding: 16px 32px;
  font-size: 16px;
  line-height: 2;
  display: flex;
}
@media (max-width: 530px) {
  .K2-pros-cons {
    flex-direction: column;
  }
  .K2-pros-cons ul li:nth-of-type(2n) {
    background: #eee;
  }
}

/* Separator */
.custom-separator {
    border-top: 5px solid #aaa;  /* 5px thick solid line */
    width: 100%;                /* Full width */
    margin: 40px 0;             /* 40px space above and below the line */
}



