.impression-box-container{
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 30px auto 50px;
}
.IB-mob{
    display: flex;
    gap: 24px;
}
.ib-icon{
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 0 12px;     /* space below icon */
  object-fit: contain;  /* keeps PNG/SVG nicely contained */
}
.IB-layout{
    width: 290px;
    min-height: 214px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2.32px solid #E9E5DE;
    border-radius: 17.5px;
    padding: 28px 40px 28px 15px ;
	box-shadow:0 2px 8px rgba(0,0,0,0.15);
	background:#ffffff;
}
.IB-layout h3{
    font-family: Archivo;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #191919;
    margin: 0;
}
.IB-layout p{
    font-family: Archivo;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #191919;
    margin: 0;
}

@media (max-width: 1024px) {
    .impression-box-container{
        gap: 20px;
        align-items: center;
        flex-direction: column;
        width: calc(100% - 20px);
        margin: 20px auto 35px;
    }
    .IB-mob{
        gap: 18px;
    }
    .IB-layout{
        max-width: 195px;
        width: 50%;
        min-height: 144px;
        gap: 10px;
        justify-content: center;
        padding: 10px;
        border-width: 2px;
    }
    .IB-layout h3{
        font-size: 20px;
		line-height: 1.2;
        margin: 0 8px;
    }
    .IB-layout p{
        font-size: 15px;
        line-height: 1.5;
        margin: 0 7px;
    }
}
@media (min-width: 1025px) and (max-width: 1240px) {
    .impression-box-container{
        gap: 20px;
        align-items: center;
        flex-direction: column;
    }
    .IB-mob{
        gap: 18px;
    }
}