.industries-section {
    background: #eaf2fb;
    padding: 50px 0;
    text-align: center;
}

.industries-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    justify-content: center;
}
.industries-header img {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}
.industries-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 0;
    color: #222;
    letter-spacing: -1px;
}

.industries-description {
    max-width: 800px;
    margin: 0 auto 36px auto;
    font-size: 1.08rem;
    color: #222;
    line-height: 1.6;
}

.industries-cta {
    padding: 80px 0 160px;
    background: #f7fbfc;
    margin-bottom: 90px;
}
.industries-content {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
    margin-bottom: 0;
    align-items: stretch;
}

.feature-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    padding: 30px;
    max-width: 30%;
    width: 33.33333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    transition: box-shadow 0.18s;
    gap: 16px;
}
.feature-box:hover {
    box-shadow: 0 8px 32px rgba(2, 8, 23, 0.1);
}
.feature-image {
    width: auto;
    /* max-width: 220px; */
    height: 100px;
    margin-bottom: 18px;
    display: block;
}
.feature-box h4 {
    /* font-size: 1.15rem; */
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
    text-align: center;
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .industries-content {
        gap: 18px;
    }
    .feature-box {
        max-width: 100%;
        min-width: 0;
        padding: 24px 10px 18px 10px;
    }
    .feature-image {
        max-width: 180px;
    }
}

@media (max-width: 767.98px) {
    .industries-content {
        flex-direction: column;
        align-items: center;
    }
    .feature-box {
        width: 100%;
        margin-bottom: 18px;
    }
    .industries-header h1 {
        font-size: 1.3rem;
    }
    .industries-description {
        font-size: 1rem;
    }
}
