@charset "utf-8";
.unit.whole .container-fluid #programs {
}
#programs {
    text-align: center;
}
#article {
    padding: 20px 0;
}
article h2 {
    color: #2B76F9;
    text-align: center;
    text-shadow: 1px 2px rgba(235,235,239,0.90);
    right: 8%;
    font-size: 1.5rem;
}
article p {
    padding-left: 0px;
    color: #ED1D21;
    text-align: center;
}
/* Container for the Info Box */
.info-box {
    background-color: #f9f9f9;       /* Light grey background */
    border-left: 6px solid #D70104;   /* Thick red accent border on the left */
    padding: 25px;                   /* Space inside the box */
    margin: 30px 0;                  /* Space above and below the box */
    border-radius: 4px;              /* Slight rounding on the corners */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Very subtle shadow for depth */
}


/* Styling the text inside the info box */
.info-box p {
    font-size: 1.1rem;               /* Slightly larger text */
    margin-bottom: 12px;             /* Spacing between lines */
    color: #333;                     /* Dark grey for readability */
    line-height: 1.5;
}

/* Ensure the last paragraph (or button) doesn't have extra margin */
.info-box p:last-child {
    margin-bottom: 0;
}

/* Style for the checkmark or icons */
.info-box strong {
    color: #D70104;                  /* Match the red for emphasis */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .info-box {
        padding: 15px;
        border-left-width: 4px;
    }
}
