/* ===== DX page scoped styles ===== */
.dx {
    --dx-navy: #1c2b3a;
    --dx-teal: #1c5f7b;
    --dx-teal-dark: #174f66;
    --dx-accent: #2b9fd6;
    --dx-line: #e3e8ec;
    --dx-bg: #f4f7f9;
    color: #34424d;
    font-size: 15px;
    line-height: 1.9;
}

.dx .dx_inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* hero */
.dx_hero {
    text-align: center;
    padding: 70px 24px 64px;
    background: linear-gradient(180deg, #eef4f8 0%, #ffffff 100%);
}

.dx_hero h1 {
    font-size: 34px;
    font-weight: 700;
    color: var(--dx-navy);
    letter-spacing: .04em;
    margin-bottom: 22px;
}

.dx_hero h1::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    margin: 18px auto 0;
    background: var(--dx-accent);
    border-radius: 2px;
}

.dx_hero p {
    font-size: 14px;
    line-height: 2.1;
    color: #5a6b76;
}

/* section heading with left bar */
.dx_head {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dx-navy);
    letter-spacing: .02em;
    margin: 0 0 32px;
}

.dx_head::before {
    content: "";
    width: 6px;
    height: 26px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--dx-accent) 0%, var(--dx-teal) 100%);
}

/* divider band */
.dx_band {
    height: 14px;
    background: #d7dde1;
}

.dx_section {
    padding: 60px 0;
}

/* 4 strategic cards */
.flex_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.dx_measures {
    margin-bottom: 60px;
    justify-content: space-between;
}

.dx_card {
    width: calc(50% - 15px);
    margin-bottom: 30px;
    background: #f8fbff;
    border: 1px solid #e0e5ea;
    border-top: 4px solid #1ea1e7;
    border-radius: 10px;
    padding: 30px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.dx_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.dx_card_icon {
    font-size: 32px;
    color: #1ea1e7;
    margin-bottom: 20px;
    text-align: left;
}

.dx_card_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: left;
    color: #222;
    background: transparent;
    width: auto;
    padding: 0;
}

.dx_card_desc {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    color: #444;
}

/* feature row: text + image placeholder */
.dx_feature {
    display: flex;
    align-items: center;
    gap: 44px;
}

.dx_feature .dx_txt {
    flex: 1;
}

.dx_feature.rev {
    flex-direction: row-reverse;
}

.dx_subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--dx-navy);
    margin-bottom: 16px;
}

.dx_feature .dx_txt p {
    font-size: 13.5px;
    line-height: 2;
    color: #5d6e79;
}

.dx_imgbox {
    flex: 0 0 300px;
    border-radius: 14px;
    overflow: hidden;
}

.dx_imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* check list */
.dx_checks {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.dx_checks li {
    position: relative;
    padding-left: 28px;
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4a5a64;
    list-style: none;
}

.dx_checks li .fa {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--dx-accent);
    font-size: 16px;
}

/* highlight line */
.dx_highlight {
    margin-top: 22px;
    font-weight: 700;
    color: var(--dx-accent) !important;
    font-size: 18px !important;
}

/* quote box */
.dx_quote {
    display: inline-block; 
    margin-top: 22px;
    padding: 16px 18px;  
    background-color: #b8e9f0; 
    border: 1px solid #dcdfe6;
    border-radius: 10px;   
    font-size: 15px !important;
    font-weight: bold;
    color: #0971b6;
}

/* sub mini cards (Human Empowerment) */
.dx_minis {
    display: flex;
    gap: 18px;
    margin-top: 22px;
}

.dx_mini {
    flex: 1;
    background: #fff;
    border: 1px solid var(--dx-navy);
    border-radius: 6px;
    padding: 18px 10px;
    text-align: center;
}

.dx_mini .fa {
    font-size: 22px;
    color: var(--dx-accent);
    margin-bottom: 10px;
}

.dx_mini span {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #4a5a64;
}

/* roadmap */
.dx_roadmap {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dx_roadmap li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    font-size: 13.5px;
    line-height: 1.9;
    color: #5d6e79;
    list-style: none;
}

.dx_roadmap li .fa {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--dx-accent);
}

.dx_roadmap li b {
    color: var(--dx-navy);
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .dx_hero h1 {
        font-size: 26px;
    }

    .dx_head {
        font-size: 20px;
    }

    .dx_card {
        width: 100%;
    }

    .dx_feature,
    .dx_feature.rev {
        flex-direction: column;
    }

    .dx_imgbox {
        flex: 0 0 auto;
        width: 100%;
    }
}