.program-details-block {
    background: #FFFFFF;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 6px;
    font-family: 'National 2', sans-serif; /* Ensure the National 2 font is loaded in your site */
    display: flex;
    flex-direction: column;
}

.program-details-title {
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.4px;
    color: #1A437F;
    padding: 10px 0; /* Adjust as needed */
    ;
}

.program-details-title::before {
    content: "";
    margin-right: 15px;
    border-left: 3px solid #EAB547;
}

.program-details-block .detail {
    display: flex;
    align-items: center;
    padding: 10px; /* Adjust as needed */
    flex-direction: column;
}

.detail img {
    width: 13px;
    height: 13px;
    margin-right: 10px; /* Space between icon and text */
}

.detail .title {
    font-weight: bold;
    font-size: 19px;
    line-height: 23px;
    letter-spacing: 0.38px;
    color: #333333;
}

.detail .sub-text {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0.26px;
    color: #666666;
}

@media screen and (max-width: 999px) {
    .program-details-list .detail {

    flex-direction: column;
}
}



/* Desktop styles */
@media screen and (min-width: 768px) { /* Adjust breakpoint as needed */

    .program-details-block {
        margin-bottom: 23px;
    }


    .program-details-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around; /* This will space out the .detail items evenly */
    }

    .detail {
        /* For horizontal layout, let's adjust the padding */
        padding: 15px 20px; /* Adjust as needed */
        flex-direction: column;
    }

    /* You might want to add more styles here to adjust the layout and spacing to match the desktop design */
}