.incentives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(316px, 1fr));
    gap: 20px;
}

.incentive-item {
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
    padding: 20px 16px 10px 16px;
	box-shadow: 0px 4px 12px 0px #0000001F;
    border-radius: 20px;
	min-height: 225px;
}

.incentive-item:hover{
	background: #A7D8DC;
}

.incentive-item:hover .icon-box{
	background: #fff;
	transform: translateY(-4px);
}
.incentive-item:hover .contents-container {
	transform: translateY(-4px);
}

.incentive-item:hover .contents-container h3 {
	color: #101010 !important;
}

.incentive-item:hover .contents-container p {
	color: #101010 !important;
}

.incentive-item:hover .contents-container ul li {
	color: #101010 !important;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #A7D8DC;
	padding: 8px;
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contents-container h3 {
    font-family: 'Tajawal';
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    text-align: start;
	line-height: 16px !important;
}

.contents-container p {
    font-family: 'Tajawal';
    font-weight: 500;
    font-size: 14px;
    color: #616161;
    text-align: start;
    padding: 11px 0 0 0;
	line-height: 16px !important;
}

.contents-container ul  {
   padding: 0px 0 0 30px;
}

.contents-container ul li {
    color: #616161;
    text-align: start;
    font-family: 'Tajawal';
    font-weight: 500;
    font-size: 14px;
	list-style-type: disc;
	line-height: 16px !important;
}

.contents-container {
    padding: 16px 0 0 0;
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Responsive tweaks */
@media (max-width: 768px) {
   
	.incentives-grid {
	padding: 0 10px;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}


.contents-container h3 {
    font-size: 18px;
	line-height: 22px !important;
	}

.contents-container p {
    font-size: 16px;
	line-height: 22px !important;
	}

.contents-container ul li {
        font-size: 13px;
	    line-height: 19px !important;
    }
}
