.rto-program-section {
    padding: 60px 0;
    font-family: inherit;
}

.rto-program-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--rto-primary-color, var(--primary-color, #b32b1c));
    margin-bottom: 45px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grid Layout */
.rto-program-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 992px) {
    .rto-program-grid {
        grid-template-columns: 1fr auto 1fr;
        align-items: center; /* vertically align image center */
    }
}

/* Column styles */
.rto-col {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
}

.rto-col-title {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.rto-col-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: var(--rto-primary-color, var(--primary-color, #b32b1c));
}

.rto-col-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 24px;
}

.rto-col-details-title {
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 16px;
}

.rto-col-details-list {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 0 35px 0 !important;
}

.rto-col-details-list li {
    list-style-type: none !important;
    list-style: none !important;
    font-size: 14.5px;
    line-height: 1.6;
    color: #444444 !important;
    position: relative;
    padding-left: 20px !important;
    margin-bottom: 10px !important;
    background: none !important;
    background-image: none !important;
}

.rto-col-details-list li::before {
    content: "•" !important;
    display: inline-block !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: #000000 !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-family: inherit !important;
    background: none !important;
    transform: none !important;
    transition: none !important;
}

.rto-col-details-list li::after {
    display: none !important;
    content: none !important;
}

/* Button styles */
.rto-col-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #ffffff;
    background-color: var(--rto-primary-color, var(--primary-color, #b32b1c));
    border: 2px solid var(--rto-primary-color, var(--primary-color, #b32b1c));
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-top: auto; /* Push button to the bottom if column height varies */
}

.rto-col-btn:hover {
    background-color: transparent;
    color: var(--rto-primary-color, var(--primary-color, #b32b1c));
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Image column */
.rto-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

@media (min-width: 992px) {
    .rto-image-col {
        padding: 0 20px;
        align-self: center;
    }
}

.rto-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .rto-program-section {
        padding: 40px 0;
    }

    .rto-program-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .rto-col-title {
        font-size: 20px;
    }

    .rto-col-desc {
        font-size: 14px;
    }

    .rto-image-col {
        order: 1; /* Center image visually: on mobile, stack is Left, Image, Right */
    }
    
    .rto-col:last-of-type {
        order: 2;
    }
}
