.why-chooseinner-page {
    padding: 90px 0;
    background: #f7f9fc;
}

.why-chooseinner-page .section-heading {
    max-width: 750px;
    margin: auto;
    margin-bottom: 60px;
}

.why-chooseinner-page .section-heading .eyebrow {
    display: inline-block;
    padding: 8px 18px;
    background: #e7f4ef;
    color: #054f9d;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
}

.why-chooseinner-page .section-heading h2 {
    font-size: 46px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 20px;
}

.why-chooseinner-page .section-heading h2 span {
    color: #054f9d;
}

.why-chooseinner-page .section-heading p {
    font-size: 18px;
    color: #667085;
    line-height: 1.8;
}

.why-chooseinner-page .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-chooseinner-page .why-card {
    background: #00519d;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: .35s;
    height: 100%;
}

.why-chooseinner-page .why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    border-color: #0a8f5b;
}

.why-chooseinner-page .why-card .icon {
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #000000;
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.why-chooseinner-page .why-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fdfdfd;
}

.why-chooseinner-page .why-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #e2e3e4;
    margin: 0;
}

@media(max-width:991px) {

    .why-chooseinner-page .section-heading h1 {
        font-size: 36px;
    }

}

@media(max-width:767px) {

    .why-chooseinner-page .why-card {
        flex-direction: column;
        text-align: center;
    }

    .why-chooseinner-page .why-card .icon {
        margin: auto;
    }

    .why-chooseinner-page .section-heading h1 {
        font-size: 30px;
    }

    .why-chooseinner-page .section-heading p {
        font-size: 16px;
    }

}