/* WHY CHOOSE MIDWAY SECTION */
.why-section {
    width: 100%;
    background: #f7f8fb;
    padding: 95px 45px;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* HEADING */
.why-heading {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.why-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;
    padding: 10px 26px;

    background: #b4070b;
    color: #ffffff;

    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
}

.why-heading h2 {
    margin-bottom: 18px;

    color: #333333;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.4px;
}
.why-heading p {
    color: #555555;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* CARD */
.why-card {
    position: relative;
    overflow: hidden;

    min-height: 300px;
    padding: 34px 28px;

    background: #ffffff;
    border: 1px solid #e3e6ee;
    border-radius: 16px;

    box-shadow: 0 12px 32px rgba(12, 28, 68, 0.06);

    transition: 0.25s ease;
}

.why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 5px;

    background: #b4070b;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(12, 28, 68, 0.13);
    border-color: rgba(180, 7, 11, 0.35);
}

/* ICON */
.why-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 26px;

    background: rgba(12, 28, 68, 0.08);
    color: #0c1c44;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
}

.why-card:hover .why-icon {
    background: #0c1c44;
    color: #ffffff;
}

/* TEXT */
.why-card h3 {
    margin-bottom: 14px;

    color: #0c1c44;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.why-card p {
    color: #555555;
    font-size: 15px;
    line-height: 1.58;
    font-weight: 400;
}

.why-card-wide {
    grid-column: span 4;
    min-height: auto;

    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 28px;
    align-items: center;
}

.why-card-wide .why-icon {
    margin-bottom: 0;
}

.why-card-wide h3 {
    margin-bottom: 10px;
}

/* TABLET */
@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card-wide {
        grid-column: span 2;
    }
}

/* MOBILE */
@media (max-width: 650px) {
    .why-section {
        padding: 65px 18px;
    }

    .why-heading {
        margin-bottom: 38px;
        text-align: left;
    }

    .why-heading h2 {
        font-size: 31px;
    }

    .why-heading p {
        font-size: 15px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;
        padding: 30px 24px;
    }

    .why-card-wide {
        grid-column: span 1;
        display: block;
    }

    .why-card-wide .why-icon {
        margin-bottom: 24px;
    }
}