.image-features-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.image-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 60px 30px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    padding-bottom: 40px;
}

.image-feature-card:hover {
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
}

.image-feature-icon img {
    width: 80px;
    display: inline-block;
    text-align: center;
}

.image-feature-icon {
    text-align: center;
}

.image-feature-icon {
    margin-bottom: 35px;
}

.image-feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #0f172a;
}

#top .image-feature-card p {
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    margin: 0;
}

.image-feature-card .note {
    display: block;
    margin-top: 12px;
    font-size: 11px;
    color: #8E8E8E;
    line-height: normal;
}
@media only screen and (max-width: 1199px){
.image-features-wrap {
    gap: 10px !important;
}
.image-feature-card {
    padding: 25px 20px;
}
.image-feature-card h3 {
    font-size: 16px;
}
#top .image-feature-card p {
    font-size: 14px;
    line-height: 1.2;
}
}
@media only screen and (max-width: 767px){
.image-features-wrap{
    grid-template-columns:repeat(1, 1fr);
}
.image-feature-icon {
    text-align: left;
}
}
