.row {
    display: flex;
    flex-wrap: wrap;
}

/* Define styles for each column */
.col-lg-3,
.col-md-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

/* Style for the box */
/* Define styles for the box */
.box {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Style for the image */
.box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Style for the list */
.custom-list {
    list-style: none; /* Remove default bullet points */
    padding: 0;
}

.custom-list li {
	text-align: center;
    position: relative;
    font-weight: bolder;
    font-size: 16px;
}
/* Style for the button-like anchor tag */
.btn-buy {
	text-align: center;
    display: inline-block;
    padding: 10px 20px;
    background-color: #07d5c0;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    font-weight: bolder;
}

/* Hover effect for the anchor tag */
.btn-buy:hover {
    background-color: #05a88e;
    color: #fff;
    font-size: 16px;
}
